Macro fabric_support::impl_outer_inherent[][src]

macro_rules! impl_outer_inherent {
    (
		impl Inherents where
			Block = $block:ident,
			UncheckedExtrinsic = $uncheckedextrinsic:ident
		{
			$( $module:ident, )*
		}
	) => { ... };
}

Implement the outer inherent. All given modules need to implement ProvideInherent.

Example

impl_outer_inherent! {
    impl Inherents where Block = Block, UncheckedExtrinsic = UncheckedExtrinsic {
        timestamp,
        consensus,
        aura,
    }
}