Skip to content

Commit 6863836

Browse files
committed
Format
1 parent 256da7d commit 6863836

File tree

1 file changed

+4
-6
lines changed

1 file changed

+4
-6
lines changed

scripts/foundry/creator-upgrades/1.2.2/UpgradeTokenBridgeCreator.s.sol

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -38,12 +38,10 @@ contract UpgradeTokenBridgeCreatorScript is DeploymentHelpersScript {
3838

3939
/// prepare upgrade calldata (not a proper gnosis safe format, used just for a reference)
4040
if (creatorOwnerIsMultisig) {
41-
bytes memory creatorCalldata = abi.encodeCall(
42-
ProxyAdmin.upgrade, (tokenBridgeCreatorProxy, newL1AtomicTokenBridgeCreatorLogic)
43-
);
44-
bytes memory retryableSenderCalldata = abi.encodeCall(
45-
ProxyAdmin.upgrade, (retryableSenderProxy, newL1TokenBridgeRetryableSenderLogic)
46-
);
41+
bytes memory creatorCalldata =
42+
abi.encodeCall(ProxyAdmin.upgrade, (tokenBridgeCreatorProxy, newL1AtomicTokenBridgeCreatorLogic));
43+
bytes memory retryableSenderCalldata =
44+
abi.encodeCall(ProxyAdmin.upgrade, (retryableSenderProxy, newL1TokenBridgeRetryableSenderLogic));
4745

4846
string memory rootObj = "root";
4947
vm.serializeString(rootObj, "chainId", vm.toString(block.chainid));

0 commit comments

Comments
 (0)