In the original implementation, maxPendingTokensForWhitelisting could be easily reached by intentionally or accidentally creating invalid token whitelisting proposals, potentially resulting in genuine token proposals being DoSed / blocked.
Mitigation
commit ccf4368
The mitigation removed the variable maxPendingTokensForWhitelisting, eliminating the limitation on the number of token whitelisting proposals.
The original issue was resolved.
Lines of code
Vulnerability details
Comments
In the original implementation,
maxPendingTokensForWhitelisting
could be easily reached by intentionally or accidentally creating invalid token whitelisting proposals, potentially resulting in genuine token proposals being DoSed / blocked.Mitigation
commit ccf4368 The mitigation removed the variable
maxPendingTokensForWhitelisting
, eliminating the limitation on the number of token whitelisting proposals. The original issue was resolved.Conclusion
Confirmed