Skip to content

Commit

Permalink
Gas estimation should be bigint
Browse files Browse the repository at this point in the history
  • Loading branch information
corbanbrook committed Jun 7, 2024
1 parent 3fa63b6 commit b320a62
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/GasEstimation.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ contract('Estimate gas usage', () => {

expect(estimated).to.approximately(await gasUsedFor(realTx), 5000)

expect(await callReceiver.lastValA()).to.equal(1)
expect(await callReceiver.lastValA()).to.equal(1n)
})

it('Should estimate wallet deployment + upgrade + failed transaction', async () => {
Expand Down

0 comments on commit b320a62

Please sign in to comment.