From 69ec5e5a275a32b5059907f9ea45a96b318755c3 Mon Sep 17 00:00:00 2001 From: Vasiliy Tikhonenko Date: Tue, 25 Oct 2022 19:01:49 +0700 Subject: [PATCH] fix l2Signer --- scripts/register_custom_token.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/register_custom_token.ts b/scripts/register_custom_token.ts index 893bc4e07e..ca3f8bcce6 100644 --- a/scripts/register_custom_token.ts +++ b/scripts/register_custom_token.ts @@ -22,7 +22,7 @@ const L1Signer = ethers.Wallet.fromMnemonic(l1privKey) const L2Signer = ethers.Wallet.fromMnemonic(l2privKey) const l1Signer = L1Signer.connect(l1Prov) -const l2Signer = L1Signer.connect(l2Prov) +const l2Signer = L2Signer.connect(l2Prov) const wait = (ms: number) => new Promise(res => setTimeout(res, ms))