Skip to content

Commit 377f363

Browse files
committed
eip4762: fix gas values
Signed-off-by: Ignacio Hagopian <[email protected]>
1 parent 6288f7a commit 377f363

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

tests/verkle/eip4762_verkle_gas_witness/test_calls.py

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -88,16 +88,16 @@ def test_calls_warm(blockchain_test: BlockchainTestFiller, fork: Fork, call_inst
8888
@pytest.mark.parametrize(
8989
"call_instruction, value_bearing, gas_limit, enough_gas_target_basicdata",
9090
[
91-
(Op.CALL, True, 21_424 + 3500 + 5599, False),
92-
(Op.CALL, True, 21_424 + 3500 + 5600, True),
93-
(Op.CALL, False, 21_424 + 2099, False),
94-
(Op.CALL, False, 21_424 + 2100, True),
95-
(Op.CALLCODE, False, 21_424 + 2099, False),
96-
(Op.CALLCODE, False, 21_424 + 2100, True),
97-
(Op.DELEGATECALL, False, 21_421 + 2099, False),
98-
(Op.DELEGATECALL, False, 21_421 + 2100, True),
99-
(Op.STATICCALL, False, 21_421 + 2099, False),
100-
(Op.STATICCALL, False, 21_421 + 2100, True),
91+
(Op.CALL, True, 21_421 + 3500 + 5599, False),
92+
(Op.CALL, True, 21_421 + 3500 + 5600, True),
93+
(Op.CALL, False, 21_421 + 2099, False),
94+
(Op.CALL, False, 21_421 + 2100, True),
95+
(Op.CALLCODE, False, 21_421 + 2099, False),
96+
(Op.CALLCODE, False, 21_421 + 2100, True),
97+
(Op.DELEGATECALL, False, 21_418 + 2099, False),
98+
(Op.DELEGATECALL, False, 21_418 + 2100, True),
99+
(Op.STATICCALL, False, 21_418 + 2099, False),
100+
(Op.STATICCALL, False, 21_418 + 2100, True),
101101
],
102102
ids=[
103103
"CALL_with_value_insufficient_for_value_transfer_target",

0 commit comments

Comments
 (0)