We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 73010ae + d24498e commit d4bf75bCopy full SHA for d4bf75b
core/src/main/java/com/radixdlt/consensus/liveness/Pacemaker.java
@@ -175,8 +175,8 @@ public void start() {
175
public void processRoundUpdate(RoundUpdate roundUpdate) {
176
log.trace("Round Update: {}", roundUpdate);
177
this.latestRoundUpdate = roundUpdate;
178
- if (currentRound().gt(this.highestKnownQcRound)) {
179
- this.highestKnownQcRound = roundUpdate.getCurrentRound();
+ if (roundUpdate.getHighQC().getHighestRound().gt(this.highestKnownQcRound)) {
+ this.highestKnownQcRound = roundUpdate.getHighQC().getHighestRound();
180
}
181
this.startRound();
182
0 commit comments