Struct everscale_types::models::block::McBlockExtra
source · pub struct McBlockExtra<C: CellFamily> {
pub shards: ShardHashes<C>,
pub fees: ShardFees<C>,
pub prev_block_signatures: Dict<C, u16, BlockSignature>,
pub recover_create_msg: Option<CellContainer<C>>,
pub mint_msg: Option<CellContainer<C>>,
pub copyleft_msgs: Dict<C, Uint15, CellContainer<C>>,
pub config: Option<BlockchainConfig<C>>,
}Expand description
Additional content for masterchain blocks.
Fields§
§shards: ShardHashes<C>A tree of the most recent descriptions for all currently existing shards for all workchains except the masterchain.
fees: ShardFees<C>Collected/created shard fees.
prev_block_signatures: Dict<C, u16, BlockSignature>Signatures for previous blocks (TODO)
recover_create_msg: Option<CellContainer<C>>TODO
mint_msg: Option<CellContainer<C>>TODO
copyleft_msgs: Dict<C, Uint15, CellContainer<C>>Copyleft messages if present.
config: Option<BlockchainConfig<C>>Blockchain config (if the block is a key block).
Trait Implementations§
source§impl<C: CellFamily> Clone for McBlockExtra<C>
impl<C: CellFamily> Clone for McBlockExtra<C>
source§impl<C: CellFamily> Debug for McBlockExtra<C>
impl<C: CellFamily> Debug for McBlockExtra<C>
source§impl<'a, C: CellFamily> Load<'a, C> for McBlockExtra<C>
impl<'a, C: CellFamily> Load<'a, C> for McBlockExtra<C>
source§impl<C: CellFamily> Store<C> for McBlockExtra<C>
impl<C: CellFamily> Store<C> for McBlockExtra<C>
source§fn store_into(
&self,
builder: &mut CellBuilder<C>,
finalizer: &mut dyn Finalizer<C>
) -> bool
fn store_into( &self, builder: &mut CellBuilder<C>, finalizer: &mut dyn Finalizer<C> ) -> bool
Tries to store itself into the cell builder.