From bcd9b7a01be103b3beaa64c377f845a63b549d94 Mon Sep 17 00:00:00 2001 From: Thrilok kumar Date: Tue, 6 Feb 2024 02:14:55 +0530 Subject: [PATCH] fix maximum settable configs --- contracts/GovernorBravoDelegate.sol | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/contracts/GovernorBravoDelegate.sol b/contracts/GovernorBravoDelegate.sol index 6313598..2bdc0b5 100644 --- a/contracts/GovernorBravoDelegate.sol +++ b/contracts/GovernorBravoDelegate.sol @@ -20,16 +20,16 @@ contract InstaGovernorBravoDelegate is GovernorBravoDelegateStorageV1, GovernorB uint public constant MAX_PROPOSAL_THRESHOLD = 50000000e18; // 5,000,000 /// @notice The minimum setable voting period - uint public constant MIN_VOTING_PERIOD = 5760; // About 24 hours + uint public constant MIN_VOTING_PERIOD = 7200; // About 24 hours, 12s per block /// @notice The max setable voting period - uint public constant MAX_VOTING_PERIOD = 80640; // About 2 weeks + uint public constant MAX_VOTING_PERIOD = 100800; // About 2 weeks, 12s per block /// @notice The min setable voting delay uint public constant MIN_VOTING_DELAY = 1; /// @notice The max setable voting delay - uint public constant MAX_VOTING_DELAY = 40320; // About 1 week + uint public constant MAX_VOTING_DELAY = 50400; // About 1 week, 12s per block /// @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 uint public constant quorumVotes = 4000000e18; // 4,000,000