Skip to content

Commit

Permalink
fix SecurityCouncilMemberRemovalGovernor comment
Browse files Browse the repository at this point in the history
  • Loading branch information
DZGoldman committed Aug 15, 2023
1 parent 22d763e commit f7c31dc
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ contract SecurityCouncilMemberRemovalGovernor is
{
(uint256 againstVotes, uint256 forVotes,) = proposalVotes(proposalId);

// for-votes / total-votes > success-numerator/ success-denominator
// for-votes / total-votes >= success-numerator/ success-denominator
return
VOTE_SUCCESS_DENOMINATOR * forVotes >= (forVotes + againstVotes) * voteSuccessNumerator;
}
Expand Down

0 comments on commit f7c31dc

Please sign in to comment.