pub struct SealBlockParams<'a, B: BlockT, BI, SC, C: ProvideRuntimeApi<B>, E, TP, CIDP, P> {
pub create_empty: bool,
pub finalize: bool,
pub parent_hash: Option<<B as BlockT>::Hash>,
pub sender: Sender<CreatedBlock<<B as BlockT>::Hash>>,
pub pool: Arc<TP>,
pub client: Arc<C>,
pub env: &'a mut E,
pub select_chain: &'a SC,
pub consensus_data_provider: Option<&'a dyn ConsensusDataProvider<B, Proof = P>>,
pub block_import: &'a mut BI,
pub create_inherent_data_providers: &'a CIDP,
}Expand description
params for sealing a new block
Fields§
§create_empty: boolif true, empty blocks(without extrinsics) will be created. otherwise, will return Error::EmptyTransactionPool.
finalize: boolinstantly finalize this block?
parent_hash: Option<<B as BlockT>::Hash>specify the parent hash of the about-to-created block
sender: Sender<CreatedBlock<<B as BlockT>::Hash>>sender to report errors/success to the rpc.
pool: Arc<TP>transaction pool
client: Arc<C>header backend
env: &'a mut EEnvironment trait object for creating a proposer
select_chain: &'a SCSelectChain object
consensus_data_provider: Option<&'a dyn ConsensusDataProvider<B, Proof = P>>Digest provider for inclusion in blocks.
block_import: &'a mut BIblock import object
create_inherent_data_providers: &'a CIDPSomething that can create the inherent data providers.
Auto Trait Implementations§
impl<'a, B, BI, SC, C, E, TP, CIDP, P> !RefUnwindSafe for SealBlockParams<'a, B, BI, SC, C, E, TP, CIDP, P>
impl<'a, B, BI, SC, C, E, TP, CIDP, P> Send for SealBlockParams<'a, B, BI, SC, C, E, TP, CIDP, P>where BI: Send, C: Send + Sync, CIDP: Sync, E: Send, SC: Sync, TP: Send + Sync,
impl<'a, B, BI, SC, C, E, TP, CIDP, P> Sync for SealBlockParams<'a, B, BI, SC, C, E, TP, CIDP, P>where BI: Sync, C: Send + Sync, CIDP: Sync, E: Sync, SC: Sync, TP: Send + Sync,
impl<'a, B, BI, SC, C, E, TP, CIDP, P> Unpin for SealBlockParams<'a, B, BI, SC, C, E, TP, CIDP, P>where <B as Block>::Hash: Unpin,
impl<'a, B, BI, SC, C, E, TP, CIDP, P> !UnwindSafe for SealBlockParams<'a, B, BI, SC, C, E, TP, CIDP, P>
Blanket Implementations§
source§impl<T> CheckedConversion for T
impl<T> CheckedConversion for T
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
source§impl<T> SaturatedConversion for T
impl<T> SaturatedConversion for T
source§fn saturated_from<T>(t: T) -> Selfwhere
Self: UniqueSaturatedFrom<T>,
fn saturated_from<T>(t: T) -> Selfwhere Self: UniqueSaturatedFrom<T>,
source§fn saturated_into<T>(self) -> Twhere
Self: UniqueSaturatedInto<T>,
fn saturated_into<T>(self) -> Twhere Self: UniqueSaturatedInto<T>,
Consume self to return an equivalent value of
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
The counterpart to
unchecked_from.source§impl<T, S> UniqueSaturatedInto<T> for Swhere
T: Bounded,
S: TryInto<T>,
impl<T, S> UniqueSaturatedInto<T> for Swhere T: Bounded, S: TryInto<T>,
source§fn unique_saturated_into(self) -> T
fn unique_saturated_into(self) -> T
Consume self to return an equivalent value of
T.