File tree Expand file tree Collapse file tree 4 files changed +5
-9
lines changed Expand file tree Collapse file tree 4 files changed +5
-9
lines changed Original file line number Diff line number Diff line change @@ -305,7 +305,6 @@ def add_code_change(
305
305
306
306
[`CREATE`]: ref:ethereum.amsterdam.vm.instructions.system.create
307
307
[`CREATE2`]: ref:ethereum.amsterdam.vm.instructions.system.create2
308
- [`SETCODE`]: ref:ethereum.amsterdam.vm.instructions.system.setcode
309
308
"""
310
309
ensure_account (builder , address )
311
310
Original file line number Diff line number Diff line change @@ -311,7 +311,6 @@ def track_code_change(
311
311
312
312
[`CREATE`]: ref:ethereum.amsterdam.vm.instructions.system.create
313
313
[`CREATE2`]: ref:ethereum.amsterdam.vm.instructions.system.create2
314
- [`SETCODE`]: ref:ethereum.amsterdam.vm.instructions.system.setcode
315
314
"""
316
315
track_address_access (tracker , address )
317
316
add_code_change (
Original file line number Diff line number Diff line change 30
30
)
31
31
32
32
from . import vm
33
- from .block_access_lists import (
33
+ from .block_access_lists .builder import build
34
+ from .block_access_lists .rlp_utils import compute_block_access_list_hash
35
+ from .block_access_lists .tracker import (
34
36
StateChangeTracker ,
35
- build ,
36
- compute_block_access_list_hash ,
37
37
set_transaction_index ,
38
38
track_balance_change ,
39
39
)
Original file line number Diff line number Diff line change 22
22
from ethereum .crypto .hash import Hash32
23
23
from ethereum .exceptions import EthereumException
24
24
25
- from ..block_access_lists import BlockAccessListBuilder
25
+ from ..block_access_lists . builder import BlockAccessListBuilder
26
26
from ..blocks import Log , Receipt , Withdrawal
27
27
from ..fork_types import Address , Authorization , VersionedHash
28
28
from ..state import State , TransientStorage
29
29
from ..transactions import LegacyTransaction
30
30
from ..trie import Trie
31
31
32
32
if TYPE_CHECKING :
33
- from ..block_access_lists import StateChangeTracker
34
-
35
- __all__ = ("Environment" , "Evm" , "Message" )
33
+ from ..block_access_lists .tracker import StateChangeTracker # noqa: F401
36
34
37
35
38
36
@dataclass
You can’t perform that action at this time.
0 commit comments