mirror of
https://github.com/serai-dex/serai.git
synced 2025-04-06 14:27:28 +00:00
Correct time-adjustment code on round skip
This commit is contained in:
parent
ecde185bbf
commit
ca3a29f616
1 changed files with 2 additions and 1 deletions
|
@ -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()
|
||||
|
|
Loading…
Reference in a new issue