Macro frame_support::impl_outer_inherent
source · [−]macro_rules! impl_outer_inherent {
(
impl Inherents where
Block = $block:ident,
UncheckedExtrinsic = $uncheckedextrinsic:ident
{
$( $module:ident, )*
}
) => { ... };
}
Expand description
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,
}
}