Summary
finalize() now includes abstentions in the quorum calculation:
let total_votes = proposal.votes_for + proposal.votes_against + proposal.abstentions;
if total_votes >= config.quorum && proposal.votes_for > proposal.votes_against {
There is no test explicitly verifying that a proposal can reach quorum purely via abstentions and then fail because votes_for does not exceed votes_against.
Tasks
Labels: testing, forge-governor