Skip to content

Commit

Permalink
Fix incorrect comparison in RIR calculations.
Browse files Browse the repository at this point in the history
  • Loading branch information
Kinematics committed Nov 6, 2020
1 parent 7423368 commit 5b233e9
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ private VoteStorageEntry GetOptionWithHigherPrefCount(
{
count1++;
}
else if (support2.MarkerValue > support1.MarkerValue)
else if (support2.MarkerValue < support1.MarkerValue)
{
count2++;
}
Expand Down

0 comments on commit 5b233e9

Please sign in to comment.