From bf320932d9afe8ebf00a7f669e82e5b146d1d47a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Antonio=20Calv=C3=ADn=20Garc=C3=ADa?= Date: Mon, 29 Jan 2024 17:56:41 +0100 Subject: [PATCH] revert yarn.lock (#77) --- infrastructure/zk/src/init.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/infrastructure/zk/src/init.ts b/infrastructure/zk/src/init.ts index 76cb6f0f5422..f3510009a40e 100644 --- a/infrastructure/zk/src/init.ts +++ b/infrastructure/zk/src/init.ts @@ -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); });