Skip to content

Commit

Permalink
estimator: adjust gas estimation threshold in multiple signers v3 test
Browse files Browse the repository at this point in the history
  • Loading branch information
shunkakinoki committed Mar 3, 2025
1 parent 0eaa728 commit 6047bb2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion estimator_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -1171,7 +1171,7 @@ func TestEstimateSequenceMultipleSigners(t *testing.T) {
assert.NoError(t, err)

assert.LessOrEqual(t, receipt.GasUsed, estimated)
assert.Less(t, estimated-receipt.GasUsed, uint64(25000))
assert.Less(t, estimated-receipt.GasUsed, uint64(40000))

ret, err := testutil.ContractQuery(testChain.Provider, callmockContract.Address, "lastValA()", "uint256", nil)
assert.NoError(t, err)
Expand Down

0 comments on commit 6047bb2

Please sign in to comment.