[][src]Trait sc_block_builder::BlockBuilderProvider

pub trait BlockBuilderProvider<B, Block, RA> where
    Block: BlockT,
    B: Backend<Block>,
    Self: Sized,
    RA: ProvideRuntimeApi<Block>, 
{ pub fn new_block_at<R: Into<RecordProof>>(
        &self,
        parent: &BlockId<Block>,
        inherent_digests: DigestFor<Block>,
        record_proof: R
    ) -> Result<BlockBuilder<'_, Block, RA, B>>;
pub fn new_block(
        &self,
        inherent_digests: DigestFor<Block>
    ) -> Result<BlockBuilder<'_, Block, RA, B>>; }

Block builder provider

Required methods

pub fn new_block_at<R: Into<RecordProof>>(
    &self,
    parent: &BlockId<Block>,
    inherent_digests: DigestFor<Block>,
    record_proof: R
) -> Result<BlockBuilder<'_, Block, RA, B>>
[src]

Create a new block, built on top of parent.

When proof recording is enabled, all accessed trie nodes are saved. These recorded trie nodes can be used by a third party to proof the output of this block builder without having access to the full storage.

pub fn new_block(
    &self,
    inherent_digests: DigestFor<Block>
) -> Result<BlockBuilder<'_, Block, RA, B>>
[src]

Create a new block, built on the head of the chain.

Loading content...

Implementors

Loading content...