@@ -315,14 +315,14 @@ def test_bal_callcode_nested_value_transfer(
315315 bob = pre .fund_eoa (amount = 0 )
316316
317317 call_gas = 0
318- if fork .is_eip_enabled (eip_number = 8037 ):
318+ if fork .is_eip_enabled (8037 ):
319319 call_gas = 500_000
320320 # TargetContract sends 100 wei to bob
321321 target_code = Op .CALL (call_gas , bob , 100 , 0 , 0 , 0 , 0 )
322322 target_contract = pre .deploy_contract (code = target_code )
323323
324324 callcode_gas = 50_000
325- if fork .is_eip_enabled (eip_number = 8037 ):
325+ if fork .is_eip_enabled (8037 ):
326326 callcode_gas = 500_000
327327 # Oracle contract that uses CALLCODE to execute TargetContract's code
328328 oracle_code = Op .CALLCODE (callcode_gas , target_contract , 100 , 0 , 0 , 0 , 0 )
@@ -711,7 +711,7 @@ def test_bal_2930_slot_listed_and_unlisted_writes(
711711
712712 intrinsic_gas_calculator = fork .transaction_intrinsic_cost_calculator ()
713713 gas_buffer = 50_000
714- if fork .is_eip_enabled (eip_number = 8037 ):
714+ if fork .is_eip_enabled (8037 ):
715715 gas_buffer = 500_000
716716 gas_limit = (
717717 intrinsic_gas_calculator (
@@ -2093,7 +2093,7 @@ def test_bal_create_transaction_empty_code(
20932093 contract_address = compute_create_address (address = alice , nonce = 0 )
20942094
20952095 gas_limit = 100_000
2096- if fork .is_eip_enabled (eip_number = 8037 ):
2096+ if fork .is_eip_enabled (8037 ):
20972097 gas_limit = 500_000
20982098
20992099 tx = Transaction (
@@ -2326,7 +2326,7 @@ def test_bal_all_transaction_types(
23262326 from tests .prague .eip7702_set_code_tx .spec import Spec as Spec7702
23272327
23282328 gas_limit = 100_000
2329- if fork .is_eip_enabled (eip_number = 8037 ):
2329+ if fork .is_eip_enabled (8037 ):
23302330 gas_limit = 500_000
23312331
23322332 # Create senders for each transaction type
0 commit comments