File tree Expand file tree Collapse file tree 1 file changed +15
-15
lines changed Expand file tree Collapse file tree 1 file changed +15
-15
lines changed Original file line number Diff line number Diff line change @@ -29,21 +29,21 @@ contract RootDao is
29
29
_disableInitializers ();
30
30
}
31
31
32
- function initialize (
33
- IVotes voteToken ,
34
- TimelockControllerUpgradeable timelockController ,
35
- address initialOwner
36
- ) public initializer {
37
- __Governor_init ("RootDao " );
38
- __GovernorSettings_init (7200 /* 1 day */ , 50400 /* 1 week */ , 10 * 10 ** 18 );
39
- __GovernorCountingSimple_init ();
40
- __GovernorStorage_init ();
41
- __GovernorVotes_init (voteToken);
42
- __GovernorVotesQuorumFraction_init (4 );
43
- __GovernorTimelockControl_init (timelockController);
44
- __Ownable_init (initialOwner);
45
- __UUPSUpgradeable_init ();
46
- }
32
+ function initialize (
33
+ IVotes voteToken ,
34
+ TimelockControllerUpgradeable timelockController ,
35
+ address initialOwner
36
+ ) public initializer {
37
+ __Governor_init ("RootDao " );
38
+ __GovernorSettings_init (1 /* 1 day */ , 60 /* 1 week */ , 10 * 10 ** 18 );
39
+ __GovernorCountingSimple_init ();
40
+ __GovernorStorage_init ();
41
+ __GovernorVotes_init (voteToken);
42
+ __GovernorVotesQuorumFraction_init (4 );
43
+ __GovernorTimelockControl_init (timelockController);
44
+ __Ownable_init (initialOwner);
45
+ __UUPSUpgradeable_init ();
46
+ }
47
47
48
48
function _authorizeUpgrade (address newImplementation ) internal override onlyOwner {}
49
49
You can’t perform that action at this time.
0 commit comments