Type Alias tuxedo_core::types::Block
source · pub type Block<V, C> = Block<Header, Transaction<V, C>>;
Expand description
An alias for a Tuxedo block with all the common parts filled in.
Aliased Type§
struct Block<V, C> {
pub header: Header<u32, BlakeTwo256>,
pub extrinsics: Vec<Transaction<V, C>>,
}
Fields§
§header: Header<u32, BlakeTwo256>
The block header.
extrinsics: Vec<Transaction<V, C>>
The accompanying extrinsics.