From cf60c1f224bca5f1db2eaf08f94bae1fb2570e03 Mon Sep 17 00:00:00 2001 From: John Feras Date: Mon, 8 Jan 2024 16:24:55 -0500 Subject: [PATCH] Change to 12 hour voting delay (#23) As requested by Radworks, a 12 hour voting delay at deployment --- script/DeployInput.sol | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/script/DeployInput.sol b/script/DeployInput.sol index cf39318..4e4b3fb 100644 --- a/script/DeployInput.sol +++ b/script/DeployInput.sol @@ -2,7 +2,7 @@ pragma solidity ^0.8.20; contract DeployInput { - uint256 constant INITIAL_VOTING_DELAY = 7200; // 24 hours + uint256 constant INITIAL_VOTING_DELAY = 3600; // 12 hours uint256 constant INITIAL_VOTING_PERIOD = 17_280; // matches existing config uint256 constant INITIAL_PROPOSAL_THRESHOLD = 1_000_000e18; // matches existing config