Skip to content
This repository was archived by the owner on Mar 5, 2025. It is now read-only.

Commit 6eb3cd9

Browse files
committed
fix test
1 parent 0306e72 commit 6eb3cd9

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

packages/web3/test/integration/web3-plugin-add-tx.test.ts

+1-3
Original file line numberDiff line numberDiff line change
@@ -58,9 +58,7 @@ describe('Add New Tx as a Plugin', () => {
5858
maxPriorityFeePerGas: BigInt(5000000),
5959
maxFeePerGas: BigInt(5000000),
6060
};
61-
const sub = web3.eth.sendTransaction({ ...tx }, undefined, {
62-
checkRevertBeforeSending: false,
63-
});
61+
const sub = web3.eth.sendTransaction(tx);
6462

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

0 commit comments

Comments
 (0)