Skip to content

Commit 38ad1d5

Browse files
committed
Fix members.quorum initial value
1 parent 43ffeba commit 38ad1d5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

contracts/contract/dao/protocol/settings/RocketDAOProtocolSettingsSecurity.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ contract RocketDAOProtocolSettingsSecurity is RocketDAOProtocolSettings, RocketD
1313
// Initialise settings on deployment
1414
if (!rocketStorage.getDeployedStatus()) {
1515
// Set defaults
16-
_setSettingUint("members.quorum", 0.5 ether); // Member quorum threshold that must be met for proposals to pass (51%)
16+
_setSettingUint("members.quorum", 0.51 ether); // Member quorum threshold that must be met for proposals to pass (51%)
1717
_setSettingUint("members.leave.time", 4 weeks); // How long a member must give notice for before manually leaving the security council
1818
_setSettingUint("proposal.vote.time", 2 weeks); // How long a proposal can be voted on
1919
_setSettingUint("proposal.execute.time", 4 weeks); // How long a proposal can be executed after its voting period is finished

0 commit comments

Comments
 (0)