Skip to content

Commit

Permalink
fix zk init in rollup mode
Browse files Browse the repository at this point in the history
  • Loading branch information
toni-calvin committed Jan 29, 2024
1 parent af06969 commit ab0e9a3
Show file tree
Hide file tree
Showing 2 changed files with 212 additions and 11 deletions.
2 changes: 1 addition & 1 deletion infrastructure/zk/src/init.ts
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,7 @@ export const initCommand = new Command('init')
governorPrivateKeyArgs: [],
deployerL2ContractInput: { args: [], includePaymaster: true, includeL2WETH: true },
testTokens: { deploy: true, args: [] },
validiumMode: cmd.validiumMode
validiumMode: cmd.validiumMode !== undefined ? cmd.validiumMode : false
};
await init(initArgs);
});
Expand Down
Loading

0 comments on commit ab0e9a3

Please sign in to comment.