Correct time-adjustment code on round skip

This commit is contained in:
Luke Parker 2022-11-12 05:12:20 -05:00
parent ecde185bbf
commit ca3a29f616
No known key found for this signature in database
GPG key ID: F9F1386DB1E119B6

View file

@ -213,13 +213,14 @@ impl<N: Network + 'static> TendermintMachine<N> {
let end = self.timeout(Step::Precommit);
self.end_time.insert(Round(r), end);
self.start_time = end;
self.round.0 += 1;
}
debug_assert_eq!(self.round, round);
// 11-13
// Clear timeouts
self.timeouts = HashMap::new();
self.round = round;
self.end_time.insert(round, self.timeout(Step::Precommit));
self.step = Step::Propose;
self.round_propose()