mirror of
https://source.quilibrium.com/quilibrium/ceremonyclient.git
synced 2024-11-10 18:25:17 +00:00
fix commitLongestPath off-by-one
This commit is contained in:
parent
59c550db0f
commit
d45a925525
@ -810,7 +810,7 @@ func (e *CeremonyDataClockConsensusEngine) commitLongestPath(
|
|||||||
}
|
}
|
||||||
|
|
||||||
runningFrames = [][]*protobufs.ClockFrame{
|
runningFrames = [][]*protobufs.ClockFrame{
|
||||||
{nextRunningFrames[0][currentDepth+1]},
|
{nextRunningFrames[0][currentDepth]},
|
||||||
}
|
}
|
||||||
currentDepth = 0
|
currentDepth = 0
|
||||||
} else {
|
} else {
|
||||||
|
Loading…
Reference in New Issue
Block a user