Skip to content

Commit

Permalink
fix membership lteq
Browse files Browse the repository at this point in the history
  • Loading branch information
haaase committed Nov 4, 2024
1 parent 988bea3 commit 7625a60
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -127,6 +127,7 @@ object Membership {

override def lteq(left: Membership[A, C, D], right: Membership[A, C, D]): Boolean =
if left.counter < right.counter then true
else if left.log.length < right.log.length then true
else
Lattice[D[A]].lteq(
left.innerConsensus,
Expand Down

0 comments on commit 7625a60

Please sign in to comment.