Skip to content

Commit ce0080e

Browse files
committed
style: fix formatting
1 parent 08e523d commit ce0080e

File tree

1 file changed

+21
-15
lines changed

1 file changed

+21
-15
lines changed

src/integrationTestHelpers/dockerHelpers.ts

Lines changed: 21 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -67,14 +67,17 @@ export function getTokenBridgeContractsImage(): string {
6767
}
6868
}
6969

70-
export function getRollupCreatorDockerArgs(params: {
71-
networkName: string;
72-
rpcUrl: string;
73-
deployerPrivateKey: `0x${string}`;
74-
factoryOwner: Address;
75-
maxDataSize: number;
76-
chainId: number;
77-
}, nitroContractsImage: string) {
70+
export function getRollupCreatorDockerArgs(
71+
params: {
72+
networkName: string;
73+
rpcUrl: string;
74+
deployerPrivateKey: `0x${string}`;
75+
factoryOwner: Address;
76+
maxDataSize: number;
77+
chainId: number;
78+
},
79+
nitroContractsImage: string,
80+
) {
7881
return [
7982
'run',
8083
'--rm',
@@ -106,13 +109,16 @@ export function getRollupCreatorDockerArgs(params: {
106109
];
107110
}
108111

109-
export function getTokenBridgeCreatorDockerArgs(params: {
110-
networkName: string;
111-
rpcUrl: string;
112-
deployerPrivateKey: `0x${string}`;
113-
wethAddress: Address;
114-
gasLimitForL2FactoryDeployment?: bigint;
115-
}, tokenBridgeContractsImage: string) {
112+
export function getTokenBridgeCreatorDockerArgs(
113+
params: {
114+
networkName: string;
115+
rpcUrl: string;
116+
deployerPrivateKey: `0x${string}`;
117+
wethAddress: Address;
118+
gasLimitForL2FactoryDeployment?: bigint;
119+
},
120+
tokenBridgeContractsImage: string,
121+
) {
116122
return [
117123
'run',
118124
'--rm',

0 commit comments

Comments
 (0)