Skip to content

Commit

Permalink
fix: tss calls executeRevert (#25)
Browse files Browse the repository at this point in the history
  • Loading branch information
fadeev authored Aug 22, 2024
1 parent 7c05d77 commit ce304f8
Showing 1 changed file with 12 additions and 5 deletions.
17 changes: 12 additions & 5 deletions packages/localnet/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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({
Expand Down Expand Up @@ -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");
Expand Down Expand Up @@ -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) {
Expand Down

0 comments on commit ce304f8

Please sign in to comment.