pub trait BuildGenesisBlock<Block: BlockT> {
    type BlockImportOperation;

    fn build_genesis_block(self) -> Result<(Block, Self::BlockImportOperation)>;
}
Expand description

Trait for building the genesis block.

Required Associated Types§

The import operation used to import the genesis block into the backend.

Required Methods§

Returns the built genesis block along with the block import operation after setting the genesis storage.

Implementors§