Skip to content

Commit 5c46572

Browse files
author
Brandon Iles
committed
update % thresholds in governor
1 parent 6e0deac commit 5c46572

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

contracts/GovernorAlpha.sol

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,10 @@ contract GovernorAlpha {
88
string public constant name = "Ampleforth Governor Alpha";
99

1010
/// @notice The number of votes in support of a proposal required in order for a quorum to be reached and for a vote to succeed
11-
function quorumVotes() public pure returns (uint) { return 40_000_000e18; } // 4% of Forth
11+
function quorumVotes() public pure returns (uint) { return 600_000e18; } // 4% of Forth
1212

1313
/// @notice The number of votes required in order for a voter to become a proposer
14-
function proposalThreshold() public pure returns (uint) { return 10_000_000e18; } // 1% of Forth
14+
function proposalThreshold() public pure returns (uint) { return 150_000e18; } // 1% of Forth
1515

1616
/// @notice The maximum number of actions that can be included in a proposal
1717
function proposalMaxOperations() public pure returns (uint) { return 10; } // 10 actions

0 commit comments

Comments
 (0)