Fix Tendermint bug from prior commit

This commit is contained in:
Luke Parker 2023-08-08 16:33:09 -04:00
parent f6f945e747
commit ad51c123e3
No known key found for this signature in database

View file

@ -312,7 +312,9 @@ impl<N: Network + 'static> TendermintMachine<N> {
// If we're past the start time, skip to and only join the next round
let rounds_to_skip = Instant::now().duration_since(start_time.instant()).as_secs() /
u64::from(N::block_time());
if rounds_to_skip != 0 {
machine.round(RoundNumber(rounds_to_skip.try_into().unwrap()), None);
}
machine
},
}