Struct sc_block_builder::BlockBuilder [−][src]
pub struct BlockBuilder<'a, Block: BlockT, A: ProvideRuntimeApi<Block>, B> { /* fields omitted */ }
Expand description
Utility for building new (valid) blocks from a stream of extrinsics.
Implementations
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>,
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.
Push onto the block’s list of extrinsics.
This will ensure the extrinsic can be validly executed (by executing it).
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.
pub 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.
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
Mutably borrows from an owned value. Read more
impl<T> Downcast for T where
T: Any,
impl<T> Downcast for T where
T: Any,
Convert 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
. Read more
pub fn into_any_rc(self: Rc<T>) -> Rc<dyn Any + 'static>
pub fn into_any_rc(self: Rc<T>) -> Rc<dyn Any + 'static>
Convert Rc<Trait>
(where Trait: Downcast
) to Rc<Any>
. Rc<Any>
can then be
further downcast
into Rc<ConcreteType>
where ConcreteType
implements Trait
. Read more
Convert &Trait
(where Trait: Downcast
) to &Any
. This is needed since Rust cannot
generate &Any
’s vtable from &Trait
’s. Read more
pub fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
pub fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
Convert &mut Trait
(where Trait: Downcast
) to &Any
. This is needed since Rust cannot
generate &mut Any
’s vtable from &mut Trait
’s. Read more
Instruments this type with the provided Span
, returning an
Instrumented
wrapper. Read more
Instruments this type with the provided Span
, returning an
Instrumented
wrapper. Read more
type Output = T
type Output = T
Should always be Self
The counterpart to unchecked_from
.
Consume self to return an equivalent value of T
.
pub fn vzip(self) -> V
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more