Skip to content

Commit da461c6

Browse files
refactor: make proposal delay and votingPeriod shorter
Co-authored-by: Aleksandr Shenshin <shenshin@me.com>
1 parent 364b196 commit da461c6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

contracts/Governor.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ contract RootDao is
3535
address initialOwner
3636
) public initializer {
3737
__Governor_init("RootDao");
38-
__GovernorSettings_init(1 /* 1 day */, 60 /* 1 week */, 10 * 10 ** 18);
38+
__GovernorSettings_init(1 /* 1 block */, 60 /* 30 minutes */, 10 * 10 ** 18);
3939
__GovernorCountingSimple_init();
4040
__GovernorStorage_init();
4141
__GovernorVotes_init(voteToken);

0 commit comments

Comments
 (0)