From 043fbd931e4100f2692970ca6ab11eb99762c8ca Mon Sep 17 00:00:00 2001 From: Bence Haromi Date: Thu, 16 May 2024 14:25:49 +0100 Subject: [PATCH] fix(l2): missing import --- l2-contracts/src/utils.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/l2-contracts/src/utils.ts b/l2-contracts/src/utils.ts index bd801ab4e..c77817a0b 100644 --- a/l2-contracts/src/utils.ts +++ b/l2-contracts/src/utils.ts @@ -10,7 +10,7 @@ import { web3Provider } from "../../l1-contracts/scripts/utils"; import type { BigNumber, BytesLike, Wallet } from "ethers"; import { ethers } from "ethers"; import type { Provider } from "zksync-ethers"; -import { REQUIRED_L1_TO_L2_GAS_PER_PUBDATA_LIMIT } from "zksync-ethers/build/utils"; +import { REQUIRED_L1_TO_L2_GAS_PER_PUBDATA_LIMIT, sleep } from "zksync-ethers/build/utils"; import { ERC20Factory } from "../../l1-contracts/typechain"; import { IERC20Factory } from "../typechain/IERC20Factory";