Skip to content

Commit

Permalink
Change default constitution to use single governor for voting (#215)
Browse files Browse the repository at this point in the history
  • Loading branch information
Andrew Jeffery authored Apr 12, 2023
1 parent c6d9988 commit eb9d63b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions constitution/resolve.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ export function resolve(proposal, proposerId, votes) {
}
});

// A majority of members can accept a proposal.
if (memberVoteCount > Math.floor(activeMemberCount / 2)) {
// A single member can accept a proposal.
if (memberVoteCount > 0 && activeMemberCount > 0) {
return "Accepted";
}

Expand Down

0 comments on commit eb9d63b

Please sign in to comment.