diff --git a/constitution/resolve.js b/constitution/resolve.js index b465d6882..06f27d31c 100644 --- a/constitution/resolve.js +++ b/constitution/resolve.js @@ -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"; }