@@ -287,7 +287,6 @@ def test_bal_code_changes(
287
287
)
288
288
289
289
290
- @pytest .mark .valid_from ("Amsterdam" )
291
290
@pytest .mark .parametrize ("self_destruct_in_same_tx" , [True , False ], ids = ["same_tx" , "new_tx" ])
292
291
@pytest .mark .parametrize ("pre_funded" , [True , False ], ids = ["pre_funded" , "not_pre_funded" ])
293
292
def test_bal_self_destruct (
@@ -478,7 +477,10 @@ def test_bal_call_with_value_transfer(
478
477
pre : Alloc ,
479
478
blockchain_test : BlockchainTestFiller ,
480
479
):
481
- """Ensure BAL captures balance changes from CALL opcode with value transfer."""
480
+ """
481
+ Ensure BAL captures balance changes from CALL opcode with
482
+ value transfer.
483
+ """
482
484
alice = pre .fund_eoa ()
483
485
bob = pre .fund_eoa (amount = 0 )
484
486
@@ -512,7 +514,10 @@ def test_bal_callcode_with_value_transfer(
512
514
pre : Alloc ,
513
515
blockchain_test : BlockchainTestFiller ,
514
516
):
515
- """Ensure BAL captures balance changes from CALLCODE opcode with value transfer."""
517
+ """
518
+ Ensure BAL captures balance changes from CALLCODE opcode with
519
+ value transfer.
520
+ """
516
521
alice = pre .fund_eoa ()
517
522
bob = pre .fund_eoa (amount = 0 )
518
523
@@ -563,14 +568,18 @@ def test_bal_delegated_storage_writes(
563
568
blockchain_test : BlockchainTestFiller ,
564
569
delegated_opcode ,
565
570
):
566
- """Ensure BAL captures delegated storage writes via DELEGATECALL and CALLCODE."""
571
+ """
572
+ Ensure BAL captures delegated storage writes via
573
+ DELEGATECALL and CALLCODE.
574
+ """
567
575
alice = pre .fund_eoa ()
568
576
569
577
# TargetContract that writes 0x42 to slot 0x01
570
578
target_code = Op .SSTORE (0x01 , 0x42 )
571
579
target_contract = pre .deploy_contract (code = target_code )
572
580
573
- # Oracle contract that uses delegated opcode to execute TargetContract's code
581
+ # Oracle contract that uses delegated opcode to execute
582
+ # TargetContract's code
574
583
oracle_code = delegated_opcode (target_contract )
575
584
oracle_contract = pre .deploy_contract (code = oracle_code )
576
585
@@ -619,7 +628,10 @@ def test_bal_delegated_storage_reads(
619
628
blockchain_test : BlockchainTestFiller ,
620
629
delegated_opcode ,
621
630
):
622
- """Ensure BAL captures delegated storage reads via DELEGATECALL and CALLCODE."""
631
+ """
632
+ Ensure BAL captures delegated storage reads via
633
+ DELEGATECALL and CALLCODE.
634
+ """
623
635
alice = pre .fund_eoa ()
624
636
625
637
# TargetContract that reads from slot 0x01
0 commit comments