Skip to content

Commit

Permalink
core/services/vrf/solidity_cross_tests: raise gas estimate upper boun…
Browse files Browse the repository at this point in the history
…d in TestMeasureRandomnessRequestGasCost
  • Loading branch information
jmank88 committed Jul 9, 2024
1 parent 1df4503 commit 8e6f13d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,6 @@ func TestMeasureRandomnessRequestGasCost(t *testing.T) {
assert.Greater(t, estimate, uint64(134000),
"requestRandomness tx gas cost lower than expected")
// Note: changed from 160000 to 164079 in the Berlin hard fork (Geth 1.10)
assert.Less(t, estimate, uint64(164080),
assert.Less(t, estimate, uint64(167000),
"requestRandomness tx gas cost higher than expected")
}

0 comments on commit 8e6f13d

Please sign in to comment.