changed min delay

This commit is contained in:
Thrilok kumar 2024-02-04 04:30:51 +05:30 committed by GitHub
parent 23421b1f08
commit fc4a8b8139
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -14,7 +14,7 @@ contract InstaTimelockV2 {
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 = 1 hours;
uint public constant MAXIMUM_DELAY = 30 days;
address public admin;