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

Returns true if we should backoff authoring new blocks.

Implementations on Foreign Types

Implementors