Type Alias frame_system::mocking::MockBlock

source ·
pub type MockBlock<T> = Block<Header<u64, BlakeTwo256>, MockUncheckedExtrinsic<T>>;
Expand description

An implementation of sp_runtime::traits::Block to be used in tests.

Aliased Type§

struct MockBlock<T> {
    pub header: Header<u64, BlakeTwo256>,
    pub extrinsics: Vec<UncheckedExtrinsic<<T as Config>::AccountId, <T as Config>::RuntimeCall, (), ()>>,
}

Fields§

§header: Header<u64, BlakeTwo256>

The block header.

§extrinsics: Vec<UncheckedExtrinsic<<T as Config>::AccountId, <T as Config>::RuntimeCall, (), ()>>

The accompanying extrinsics.