Trait sc_consensus_slots::BackoffAuthoringBlocksStrategy [−][src]
pub trait BackoffAuthoringBlocksStrategy<N> { fn should_backoff(
&self,
chain_head_number: N,
chain_head_slot: Slot,
finalized_number: N,
slow_now: Slot,
logging_target: &str
) -> bool; }
Expand description
Trait for providing the strategy for when to backoff block authoring.
Required methods
Implementations on Foreign Types
Implementors
impl<N> BackoffAuthoringBlocksStrategy<N> for BackoffAuthoringOnFinalizedHeadLagging<N> where
N: BaseArithmetic + Copy,