Skip to content

Commit 9e3c959

Browse files
committed
🥢 nit:
1 parent 90298f9 commit 9e3c959

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

tests/amsterdam/eip7928_block_level_access_lists/test_block_access_lists.py

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -291,11 +291,9 @@ def test_bal_self_destruct(pre: Alloc, blockchain_test: BlockchainTestFiller):
291291
"""Ensure BAL captures balance changes caused by `SELFDESTRUCT`."""
292292
alice = pre.fund_eoa()
293293
bob = pre.fund_eoa(amount=0)
294-
295294
kaboom = pre.deploy_contract(code=Op.SELFDESTRUCT(bob), balance=100)
296295

297296
tx = Transaction(sender=alice, to=kaboom, gas_limit=1_000_000)
298-
299297
block = Block(
300298
txs=[tx],
301299
expected_block_access_list=BlockAccessListExpectation(
@@ -316,5 +314,9 @@ def test_bal_self_destruct(pre: Alloc, blockchain_test: BlockchainTestFiller):
316314
blockchain_test(
317315
pre=pre,
318316
blocks=[block],
319-
post={alice: Account(nonce=1), kaboom: Account(balance=0), bob: Account(balance=100)},
317+
post={
318+
alice: Account(nonce=1),
319+
bob: Account(balance=100),
320+
kaboom: Account(balance=0),
321+
},
320322
)

0 commit comments

Comments
 (0)