From 4225077ec3b785c26e8e9a3d0e49ae890a85bca9 Mon Sep 17 00:00:00 2001 From: Denis Fadeev Date: Thu, 22 Aug 2024 10:52:55 +0300 Subject: [PATCH] fix: tss calls executeRevert --- packages/localnet/src/index.ts | 17 ++++++++++++----- 1 file changed, 12 insertions(+), 5 deletions(-) diff --git a/packages/localnet/src/index.ts b/packages/localnet/src/index.ts index 6192748..fb7a024 100755 --- a/packages/localnet/src/index.ts +++ b/packages/localnet/src/index.ts @@ -360,7 +360,14 @@ export const initLocalnet = async (port: number) => { ); const depositAndCallTx = await (protocolContracts.gatewayZEVM as any) .connect(fungibleModuleSigner) - .depositAndCall(context, zrc20, amount, receiver, message, deployOpts); + .depositAndCall( + context, + zrc20, + amount, + receiver, + message, + deployOpts + ); await depositAndCallTx.wait(); const logs = await provider.getLogs({ @@ -399,9 +406,9 @@ export const initLocalnet = async (port: number) => { revertContext )})` ); - (deployer as NonceManager).reset(); + (tss as NonceManager).reset(); const tx = await protocolContracts.gatewayEVM - .connect(deployer) + .connect(tss) .executeRevert(revertAddress, "0x", revertContext, deployOpts); await tx.wait(); log("EVM", "Gateway: successfully called onRevert"); @@ -433,9 +440,9 @@ export const initLocalnet = async (port: number) => { if (callOnRevert) { log("ZetaChain", "Gateway: calling executeRevert"); try { - (deployer as NonceManager).reset(); + (tss as NonceManager).reset(); await protocolContracts.gatewayZEVM - .connect(deployer) + .connect(tss) .executeRevert(revertAddress, revertContext, deployOpts); log("ZetaChain", "Gateway: Call onRevert success"); } catch (e) {