In snarkvm_ledger_committee, quorum_threshold is correctly calculated as N - f.
Since N is not always 3f + 1 (it could be 3f + 2 or 3f + 3),
the quorum threshold is not always 2f + 1.
This PR changes some comments to avoid the imprecise 3f + 1 and 2f + 1.
NOTE: no need for CI to pass since only comments were changed.
Motivation
In
snarkvm_ledger_committee
,quorum_threshold
is correctly calculated asN - f
. SinceN
is not always3f + 1
(it could be3f + 2
or3f + 3
), the quorum threshold is not always2f + 1
.This PR changes some comments to avoid the imprecise
3f + 1
and2f + 1
.NOTE: no need for CI to pass since only comments were changed.