Skip to content

Commit

Permalink
don't need this anymore
Browse files Browse the repository at this point in the history
  • Loading branch information
holic committed Aug 9, 2023
1 parent f13d6d6 commit afe9613
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion e2e/packages/sync-test/data/callWorld.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ export function callWorld<TMethod extends WriteMethodName>(page: Page, method: T
([_method, _args]) => {
const worldContract = (window as any).worldContract as WorldContract;
const writeMethod = worldContract.write[_method as any];
return writeMethod(_args, { maxFeePerGas: 0n, maxPriorityFeePerGas: 0n })
return writeMethod(_args)
.then((tx) => window["waitForTransaction"](tx))
.catch((error) => {
console.error(error);
Expand Down

0 comments on commit afe9613

Please sign in to comment.