mirror of
https://source.quilibrium.com/quilibrium/ceremonyclient.git
synced 2024-12-26 08:35:17 +00:00
Merge pull request #22 from scmart/fix-commitLongestPath-ob1
fix commitLongestPath off-by-one
This commit is contained in:
commit
20aae290cb
@ -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