We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c765ef2 commit a964c0dCopy full SHA for a964c0d
script/DeployGnosisSafe.s.sol
@@ -80,17 +80,11 @@ contract GnosisScript is Script {
80
address singleton = 0x2f2965efaCFc64Fb85dF1902260eB25C0c996195;
81
address fallbackHandler = 0xe59838EB7f251489b50940BD640326215420B936;
82
83
- SafeSetup memory setup = SafeSetup({
84
- owners: owners,
85
- threshold: threshold,
86
- to: address(0),
87
- data: "",
88
- fallbackHandler: fallbackHandler,
89
- paymentToken: address(0),
90
- payment: 0,
91
- paymentReceiver: payable(address(0)),
92
- saltNonce: saltNonce
93
- });
+ SafeSetup memory setup;
+ setup.owners = owners;
+ setup.threshold = threshold;
+ setup.fallbackHandler = fallbackHandler;
+ setup.saltNonce = saltNonce;
94
95
deploySafeInstance(factory, singleton, setup);
96
}
0 commit comments