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.