Skip to content

Commit

Permalink
feat: change MINIMUM_DELAY to 0
Browse files Browse the repository at this point in the history
  • Loading branch information
Van0k authored May 2, 2023
1 parent eabd8c7 commit 78d438e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions contracts/Timelock.sol
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ contract Timelock {
event QueueTransaction(bytes32 indexed txHash, address indexed target, uint value, string signature, bytes data, uint eta);

uint public constant GRACE_PERIOD = 14 days;
uint public constant MINIMUM_DELAY = 2 days;
uint public constant MINIMUM_DELAY = 0;
uint public constant MAXIMUM_DELAY = 30 days;

address public admin;
Expand Down Expand Up @@ -108,4 +108,4 @@ contract Timelock {
// solium-disable-next-line security/no-block-members
return block.timestamp;
}
}
}

0 comments on commit 78d438e

Please sign in to comment.