The reward to be distributed per voter in the event of a successfull proposal is wrong.
At line 192:
uint256 rewardPerVoter = totalRewards / totalVotes;
This is wrong. It should be:
uint256 rewardPerVoter = totalRewards / totalVotesFor;
instead
Medium, potential rewards for the upVoters are less, disincentivising users to vote.
Just reading the code.
Swap line 192 with the code:
uint256 rewardPerVoter = totalRewards / totalVotesFor;
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.