Struct sc_consensus_babe::ImportQueueParams
source · pub struct ImportQueueParams<'a, Block: BlockT, BI, Client, CIDP, SelectChain, Spawn> {
pub link: BabeLink<Block>,
pub block_import: BI,
pub justification_import: Option<BoxJustificationImport<Block>>,
pub client: Arc<Client>,
pub select_chain: SelectChain,
pub create_inherent_data_providers: CIDP,
pub spawner: &'a Spawn,
pub registry: Option<&'a Registry>,
pub telemetry: Option<TelemetryHandle>,
pub offchain_tx_pool_factory: OffchainTransactionPoolFactory<Block>,
}
Expand description
Parameters passed to import_queue
.
Fields§
§link: BabeLink<Block>
The BABE link that is created by block_import
.
block_import: BI
The block import that should be wrapped.
justification_import: Option<BoxJustificationImport<Block>>
Optional justification import.
client: Arc<Client>
The client to interact with the internals of the node.
select_chain: SelectChain
A [SelectChain
] implementation.
Used to determine the best block that should be used as basis when sending an equivocation report.
create_inherent_data_providers: CIDP
Used to crate the inherent data providers.
These inherent data providers are then used to create the inherent data that is
passed to the check_inherents
runtime call.
spawner: &'a Spawn
Spawner for spawning futures.
registry: Option<&'a Registry>
Registry for prometheus metrics.
telemetry: Option<TelemetryHandle>
Optional telemetry handle to report telemetry events.
offchain_tx_pool_factory: OffchainTransactionPoolFactory<Block>
The offchain transaction pool factory.
Will be used when sending equivocation reports.
Auto Trait Implementations§
impl<'a, Block, BI, Client, CIDP, SelectChain, Spawn> !RefUnwindSafe for ImportQueueParams<'a, Block, BI, Client, CIDP, SelectChain, Spawn>
impl<'a, Block, BI, Client, CIDP, SelectChain, Spawn> Send for ImportQueueParams<'a, Block, BI, Client, CIDP, SelectChain, Spawn>where BI: Send, CIDP: Send, Client: Send + Sync, SelectChain: Send, Spawn: Sync,
impl<'a, Block, BI, Client, CIDP, SelectChain, Spawn> Sync for ImportQueueParams<'a, Block, BI, Client, CIDP, SelectChain, Spawn>where BI: Sync, CIDP: Sync, Client: Send + Sync, SelectChain: Sync, Spawn: Sync,
impl<'a, Block, BI, Client, CIDP, SelectChain, Spawn> Unpin for ImportQueueParams<'a, Block, BI, Client, CIDP, SelectChain, Spawn>where BI: Unpin, CIDP: Unpin, SelectChain: Unpin,
impl<'a, Block, BI, Client, CIDP, SelectChain, Spawn> !UnwindSafe for ImportQueueParams<'a, Block, BI, Client, CIDP, SelectChain, Spawn>
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
.