diff --git a/substrate/bft/src/lib.rs b/substrate/bft/src/lib.rs index fcdc36d480315..b1091af4096f0 100644 --- a/substrate/bft/src/lib.rs +++ b/substrate/bft/src/lib.rs @@ -248,6 +248,7 @@ impl> rhododendron::Context for BftInstance fn begin_round_timeout(&self, round: usize) -> Self::RoundTimeout { use std::time::{Instant, Duration}; + let round = round / 3; let round = ::std::cmp::min(63, round) as u32; let timeout = 1u64.checked_shl(round) .unwrap_or_else(u64::max_value)