Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
forshtat committed Oct 20, 2023
1 parent c3e808d commit 60a0a1c
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 13 deletions.
24 changes: 12 additions & 12 deletions reports/gas-checker.txt
Original file line number Diff line number Diff line change
Expand Up @@ -12,28 +12,28 @@
║ │ │ │ (delta for │ (compared to ║
║ │ │ │ one UserOp) │ account.exec()) ║
╟────────────────────────────────┼───────┼───────────────┼────────────────┼─────────────────────╢
║ simple │ 1 │ 81838 │ │ ║
║ simple │ 1 │ 81957 │ │ ║
╟────────────────────────────────┼───────┼───────────────┼────────────────┼─────────────────────╢
║ simple - diff from previous │ 2 │ │ 4409515081
║ simple - diff from previous │ 2 │ │ 4421415200
╟────────────────────────────────┼───────┼───────────────┼────────────────┼─────────────────────╢
║ simple │ 10 │ 478846 │ │ ║
║ simple │ 10 │ 480000 │ │ ║
╟────────────────────────────────┼───────┼───────────────┼────────────────┼─────────────────────╢
║ simple - diff from previous │ 11 │ │ 4408315069
║ simple - diff from previous │ 11 │ │ 4427415260
╟────────────────────────────────┼───────┼───────────────┼────────────────┼─────────────────────╢
║ simple paymaster │ 1 │ 88121 │ │ ║
║ simple paymaster │ 1 │ 88243 │ │ ║
╟────────────────────────────────┼───────┼───────────────┼────────────────┼─────────────────────╢
║ simple paymaster with diff │ 2 │ │ 4308414070
║ simple paymaster with diff │ 2 │ │ 4321814204
╟────────────────────────────────┼───────┼───────────────┼────────────────┼─────────────────────╢
║ simple paymaster │ 10 │ 476046 │ │ ║
║ simple paymaster │ 10 │ 477398 │ │ ║
╟────────────────────────────────┼───────┼───────────────┼────────────────┼─────────────────────╢
║ simple paymaster with diff │ 11 │ │ 4314314129
║ simple paymaster with diff │ 11 │ │ 4325314239
╟────────────────────────────────┼───────┼───────────────┼────────────────┼─────────────────────╢
║ big tx 5k │ 1 │ 182895 │ │ ║
║ big tx 5k │ 1 │ 183014 │ │ ║
╟────────────────────────────────┼───────┼───────────────┼────────────────┼─────────────────────╢
║ big tx - diff from previous │ 2 │ │ 14460619346
║ big tx - diff from previous │ 2 │ │ 14472519465
╟────────────────────────────────┼───────┼───────────────┼────────────────┼─────────────────────╢
║ big tx 5k │ 10 │ 1484502 │ │ ║
║ big tx 5k │ 10 │ 1485656 │ │ ║
╟────────────────────────────────┼───────┼───────────────┼────────────────┼─────────────────────╢
║ big tx - diff from previous │ 11 │ │ 14455919299
║ big tx - diff from previous │ 11 │ │ 14475019490
╚════════════════════════════════╧═══════╧═══════════════╧════════════════╧═════════════════════╝

2 changes: 1 addition & 1 deletion test/entrypoint.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -563,7 +563,7 @@ describe('EntryPoint', function () {
gasLimit: 20000000
}).then(async t => await t.wait())
const logs1 = await entryPoint.queryFilter(entryPoint.filters.UserOperationEvent(), rcpt1.blockHash)
assert.equal(logs1[0].args.success, true)
expect(logs1[0].args.success).to.be.true

const veryBigCallGasLimit = 10000000
const op2 = await fillAndSign({
Expand Down

0 comments on commit 60a0a1c

Please sign in to comment.