pub trait ParachainExecutiveExtension {
    // Required method
    fn collect_collation_info(header: &Header) -> CollationInfo;
}
Expand description

An extension trait that allows us to implement more methods on tuxedo-core’s executive.

Required Methods§

source

fn collect_collation_info(header: &Header) -> CollationInfo

Object Safety§

This trait is not object safe.

Implementations on Foreign Types§

source§

impl<V, C> ParachainExecutiveExtension for Executive<V, C>

source§

fn collect_collation_info(header: &Header) -> CollationInfo

Implementors§