From a370680e39691b12f78f586c61756b9cb2c79de5 Mon Sep 17 00:00:00 2001 From: skosito Date: Thu, 1 Aug 2024 17:52:18 +0200 Subject: [PATCH] fix lint --- v2/scripts/localnet/worker.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/v2/scripts/localnet/worker.ts b/v2/scripts/localnet/worker.ts index 7f4370ce..ed3f37d3 100644 --- a/v2/scripts/localnet/worker.ts +++ b/v2/scripts/localnet/worker.ts @@ -114,7 +114,7 @@ const deployTestContracts = async (protocolContracts: any, deployer: Signer, fun gasLimit: 6721975, }; const testERC20Factory = new ethers.ContractFactory(TestERC20.abi, TestERC20.bytecode, deployer); - const testEVMZeta = await testERC20Factory.deploy("zeta", "ZETA", deployOpts); + await testERC20Factory.deploy("zeta", "ZETA", deployOpts); const token = await testERC20Factory.deploy("Test Token", "TTK", deployOpts);