Skip to content

Commit 4b4405a

Browse files
committed
fix: issues after rebase
1 parent ddeada5 commit 4b4405a

File tree

1 file changed

+11
-3
lines changed

1 file changed

+11
-3
lines changed

tests/amsterdam/eip7928_block_level_access_lists/test_block_access_lists_noop.py

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,15 @@
33
import pytest
44

55
from ethereum_test_forks import Fork
6-
from ethereum_test_tools import Alloc, Block, BlockchainTestFiller, Transaction
7-
from ethereum_test_tools.vm.opcode import Opcodes as Op
6+
from ethereum_test_tools import (
7+
Alloc,
8+
Block,
9+
BlockchainTestFiller,
10+
Transaction,
11+
)
12+
from ethereum_test_tools import (
13+
Opcodes as Op,
14+
)
815
from ethereum_test_types.block_access_list import (
916
BalAccountExpectation,
1017
BalBalanceChange,
@@ -218,6 +225,7 @@ def test_bal_aborted_storage_access(
218225
post={},
219226
)
220227

228+
221229
@pytest.mark.parametrize(
222230
"account_access_opcode",
223231
[
@@ -291,7 +299,7 @@ def test_bal_fully_unmutated_account(
291299
# Deploy Oracle contract with pre-existing storage value
292300
oracle = pre.deploy_contract(
293301
code=Op.SSTORE(0x01, 0x42) + Op.STOP,
294-
storage={0x01: 0x42} # Pre-existing value
302+
storage={0x01: 0x42}, # Pre-existing value
295303
)
296304

297305
tx = Transaction(sender=alice, to=oracle, gas_limit=1_000_000, value=0, gas_price=0xA)

0 commit comments

Comments
 (0)