Skip to content

Commit

Permalink
fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
avkos committed Oct 16, 2023
1 parent 0306e72 commit 6eb3cd9
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions packages/web3/test/integration/web3-plugin-add-tx.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -58,9 +58,7 @@ describe('Add New Tx as a Plugin', () => {
maxPriorityFeePerGas: BigInt(5000000),
maxFeePerGas: BigInt(5000000),
};
const sub = web3.eth.sendTransaction({ ...tx }, undefined, {
checkRevertBeforeSending: false,
});
const sub = web3.eth.sendTransaction(tx);

const waitForEvent: Promise<Transaction> = new Promise(resolve => {
// eslint-disable-next-line @typescript-eslint/no-floating-promises
Expand Down

0 comments on commit 6eb3cd9

Please sign in to comment.