Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: tss calls executeRevert #25

Merged
merged 1 commit into from
Aug 22, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading