The voting process completion is controlled by an integer division, potentially leading to unexpected results.
The line totalCurrentVotes * 100 / s_totalAllowedVoters >= MIN_QUORUM uses integer division, which always rounds down.
The voting process may not behave as the MIN_QUORUM implies that it does.
Users may complain that the voting process is not transparent.
It would be safer to rearrange this expression to avoid the need for multiplication by 100, or to use a library for safe math operations.
The contest is live. Earn rewards by submitting a finding.
This is your time to appeal against judgements on your submissions.
Appeals are being carefully reviewed by our judges.