[IF-FINDING-003] Minimum and maximum validator number validation #62
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
[IF-FINDING-003]
Minimumand maximum validator number validationDescription
Taking into consideration that in Proof of Authority (PoA), all validators have the same voting power, and that the Cosmos SDK staking module determines which validators are included in the active set based on their voting power, an issue arises when the maximum number of validators has already been reached.
If a new validator is added under these conditions, since it has the same voting power as the existing ones, the selection process may be affected by the validator’s address rather than its power. This means that a validator could be excluded from the active set not due to voting power differences, but simply due to address ordering.
To prevent this, a maximum validator count check should be enforced to block additional validators once the limit is reached—or at least until this limit is intentionally increased.
Additionally, when removing a validator a check if the minimum number of validators is reached should be added, just to prevent situations where the number of validators is to small so that even one validator is enough to break >1/3 number of byzantine validators Tendermint assumption.Problem scenarios
A minimum number of validators can be reached where a single byzantine validator is enough to break the >1/3 number of byzantine validators Tendermint assumption.Recommendation
Introduce a
minimumand a maximum number of validators check in methods to remove and add validator.Applied changes
Add a check in
AddValidator
function insidekeeper.go
that checks if the number of validators exceeds the Maximum set in staking params