Skip to content

Commit a964c0d

Browse files
committed
address nit style changes
1 parent c765ef2 commit a964c0d

File tree

1 file changed

+5
-11
lines changed

1 file changed

+5
-11
lines changed

script/DeployGnosisSafe.s.sol

Lines changed: 5 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -80,17 +80,11 @@ contract GnosisScript is Script {
8080
address singleton = 0x2f2965efaCFc64Fb85dF1902260eB25C0c996195;
8181
address fallbackHandler = 0xe59838EB7f251489b50940BD640326215420B936;
8282

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-
});
83+
SafeSetup memory setup;
84+
setup.owners = owners;
85+
setup.threshold = threshold;
86+
setup.fallbackHandler = fallbackHandler;
87+
setup.saltNonce = saltNonce;
9488

9589
deploySafeInstance(factory, singleton, setup);
9690
}

0 commit comments

Comments
 (0)