Skip to content

Commit 0b4dc4b

Browse files
committed
Fix E2E test
1 parent e1f3b10 commit 0b4dc4b

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

test/e2e/flask/user-operations.spec.ts

+4-2
Original file line numberDiff line numberDiff line change
@@ -256,7 +256,8 @@ describe('User Operations', function () {
256256
from: ERC_4337_ACCOUNT,
257257
to: GANACHE_ACCOUNT,
258258
value: convertETHToHexGwei(1),
259-
data: '0x',
259+
maxFeePerGas: '0x0',
260+
maxPriorityFeePerGas: '0x0',
260261
});
261262

262263
await confirmTransaction(driver);
@@ -294,7 +295,8 @@ describe('User Operations', function () {
294295
from: ERC_4337_ACCOUNT,
295296
to: GANACHE_ACCOUNT,
296297
value: convertETHToHexGwei(1),
297-
data: '0x',
298+
maxFeePerGas: '0x0',
299+
maxPriorityFeePerGas: '0x0',
298300
});
299301

300302
await confirmTransaction(driver);

0 commit comments

Comments
 (0)