Struct sc_block_builder::BlockBuilder
source · pub struct BlockBuilder<'a, Block: BlockT, A: ProvideRuntimeApi<Block>, B> { /* private fields */ }
Expand description
Utility for building new (valid) blocks from a stream of extrinsics.
Implementations§
source§impl<'a, Block, A, B> BlockBuilder<'a, Block, A, B>where
Block: BlockT,
A: ProvideRuntimeApi<Block> + 'a,
A::Api: BlockBuilderApi<Block> + ApiExt<Block, StateBackend = StateBackendFor<B, Block>>,
B: Backend<Block>,
impl<'a, Block, A, B> BlockBuilder<'a, Block, A, B>where Block: BlockT, A: ProvideRuntimeApi<Block> + 'a, A::Api: BlockBuilderApi<Block> + ApiExt<Block, StateBackend = StateBackendFor<B, Block>>, B: Backend<Block>,
sourcepub fn new(
api: &'a A,
parent_hash: Block::Hash,
parent_number: NumberFor<Block>,
record_proof: RecordProof,
inherent_digests: Digest,
backend: &'a B
) -> Result<Self, Error>
pub fn new( api: &'a A, parent_hash: Block::Hash, parent_number: NumberFor<Block>, record_proof: RecordProof, inherent_digests: Digest, backend: &'a B ) -> Result<Self, Error>
Create a new instance of builder based on the given parent_hash
and parent_number
.
While proof recording is enabled, all accessed trie nodes are saved. These recorded trie nodes can be used by a third party to prove the output of this block builder without having access to the full storage.
sourcepub fn push(&mut self, xt: <Block as BlockT>::Extrinsic) -> Result<(), Error>
pub fn push(&mut self, xt: <Block as BlockT>::Extrinsic) -> Result<(), Error>
Push onto the block’s list of extrinsics.
This will ensure the extrinsic can be validly executed (by executing it).
sourcepub fn build(
self
) -> Result<BuiltBlock<Block, StateBackendFor<B, Block>>, Error>
pub fn build( self ) -> Result<BuiltBlock<Block, StateBackendFor<B, Block>>, Error>
Consume the builder to build a valid Block
containing all pushed extrinsics.
Returns the build Block
, the changes to the storage and an optional StorageProof
supplied by self.api
, combined as BuiltBlock
.
The storage proof will be Some(_)
when proof recording was enabled.
sourcepub fn create_inherents(
&mut self,
inherent_data: InherentData
) -> Result<Vec<Block::Extrinsic>, Error>
pub fn create_inherents( &mut self, inherent_data: InherentData ) -> Result<Vec<Block::Extrinsic>, Error>
Create the inherents for the block.
Returns the inherents created by the runtime or an error if something failed.
sourcepub fn estimate_block_size(&self, include_proof: bool) -> usize
pub fn estimate_block_size(&self, include_proof: bool) -> usize
Estimate the size of the block in the current state.
If include_proof
is true
, the estimated size of the storage proof will be added
to the estimation.
Auto Trait Implementations§
impl<'a, Block, A, B> RefUnwindSafe for BlockBuilder<'a, Block, A, B>where B: RefUnwindSafe, <A as ProvideRuntimeApi<Block>>::Api: RefUnwindSafe, <Block as Block>::Extrinsic: RefUnwindSafe, <Block as Block>::Hash: RefUnwindSafe, <<Block as Block>::Header as Header>::Number: RefUnwindSafe,
impl<'a, Block, A, B> Send for BlockBuilder<'a, Block, A, B>where B: Sync, <A as ProvideRuntimeApi<Block>>::Api: Send,
impl<'a, Block, A, B> Sync for BlockBuilder<'a, Block, A, B>where B: Sync, <A as ProvideRuntimeApi<Block>>::Api: Sync,
impl<'a, Block, A, B> Unpin for BlockBuilder<'a, Block, A, B>where <A as ProvideRuntimeApi<Block>>::Api: Unpin, <Block as Block>::Extrinsic: Unpin, <Block as Block>::Hash: Unpin, <<Block as Block>::Header as Header>::Number: Unpin,
impl<'a, Block, A, B> UnwindSafe for BlockBuilder<'a, Block, A, B>where B: RefUnwindSafe, <A as ProvideRuntimeApi<Block>>::Api: UnwindSafe, <Block as Block>::Extrinsic: UnwindSafe, <Block as Block>::Hash: UnwindSafe, <<Block as Block>::Header as Header>::Number: UnwindSafe,
Blanket Implementations§
source§impl<T> CheckedConversion for T
impl<T> CheckedConversion for T
§impl<T> Downcast for Twhere
T: Any,
impl<T> Downcast for Twhere T: Any,
§fn into_any(self: Box<T, Global>) -> Box<dyn Any + 'static, Global>
fn into_any(self: Box<T, Global>) -> Box<dyn Any + 'static, Global>
Box<dyn Trait>
(where Trait: Downcast
) to Box<dyn Any>
. Box<dyn Any>
can
then be further downcast
into Box<ConcreteType>
where ConcreteType
implements Trait
.§fn into_any_rc(self: Rc<T>) -> Rc<dyn Any + 'static>
fn into_any_rc(self: Rc<T>) -> Rc<dyn Any + 'static>
Rc<Trait>
(where Trait: Downcast
) to Rc<Any>
. Rc<Any>
can then be
further downcast
into Rc<ConcreteType>
where ConcreteType
implements Trait
.§fn as_any(&self) -> &(dyn Any + 'static)
fn as_any(&self) -> &(dyn Any + 'static)
&Trait
(where Trait: Downcast
) to &Any
. This is needed since Rust cannot
generate &Any
’s vtable from &Trait
’s.§fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
&mut Trait
(where Trait: Downcast
) to &Any
. This is needed since Rust cannot
generate &mut Any
’s vtable from &mut Trait
’s.source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T, Outer> IsWrappedBy<Outer> for Twhere
Outer: AsRef<T> + AsMut<T> + From<T>,
T: From<Outer>,
impl<T, Outer> IsWrappedBy<Outer> for Twhere Outer: AsRef<T> + AsMut<T> + From<T>, T: From<Outer>,
§impl<T> Pointable for T
impl<T> Pointable for T
§impl<T> SaturatedConversion for T
impl<T> SaturatedConversion for T
§fn saturated_from<T>(t: T) -> Selfwhere
Self: UniqueSaturatedFrom<T>,
fn saturated_from<T>(t: T) -> Selfwhere Self: UniqueSaturatedFrom<T>,
§fn saturated_into<T>(self) -> Twhere
Self: UniqueSaturatedInto<T>,
fn saturated_into<T>(self) -> Twhere Self: UniqueSaturatedInto<T>,
T
. Read moresource§impl<S, T> UncheckedInto<T> for Swhere
T: UncheckedFrom<S>,
impl<S, T> UncheckedInto<T> for Swhere T: UncheckedFrom<S>,
source§fn unchecked_into(self) -> T
fn unchecked_into(self) -> T
unchecked_from
.§impl<T, S> UniqueSaturatedInto<T> for Swhere
T: Bounded,
S: TryInto<T>,
impl<T, S> UniqueSaturatedInto<T> for Swhere T: Bounded, S: TryInto<T>,
§fn unique_saturated_into(self) -> T
fn unique_saturated_into(self) -> T
T
.