Type Alias subcoin_runtime::interface::OpaqueBlock

source ·
pub type OpaqueBlock = Block<Header<u32, BlakeTwo256>, OpaqueExtrinsic>;
Expand description

The opaque block type. This is the same BlockOf, but it has [sp_runtime::OpaqueExtrinsic] as its final extrinsic type.

This should be provided to the client side as the extrinsic type.

Aliased Type§

struct OpaqueBlock {
    pub header: Header<u32, BlakeTwo256>,
    pub extrinsics: Vec<OpaqueExtrinsic>,
}

Fields§

§header: Header<u32, BlakeTwo256>

The block header.

§extrinsics: Vec<OpaqueExtrinsic>

The accompanying extrinsics.