Skip to content

Commit 5479b3c

Browse files
committed
update to latest
2 parents e1dc6a3 + ea802a0 commit 5479b3c

File tree

250 files changed

+1943
-13673
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

250 files changed

+1943
-13673
lines changed

network-upgrades/mainnet-upgrades/cancun.md

Lines changed: 1 addition & 1 deletion

pyproject.toml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ dependencies = [
2626
"ethereum-types>=0.2.4,<0.3",
2727
"ethereum-rlp>=0.1.4,<0.2",
2828
"cryptography>=45.0.1,<46",
29-
"ethereum-execution-spec-tests @ git+https://github.com/ethereum/execution-spec-tests@0fdd974b0968e443ef5878430ba5194c43149a4b",
29+
"ethereum-execution-spec-tests @ git+https://github.com/ethereum/execution-spec-tests@5220d21ba64a9a4cbdc7e4025a7f1a032a957c78",
3030
"ethereum-spec-evm-resolver @ git+https://github.com/petertdavies/ethereum-spec-evm-resolver",
3131
]
3232

@@ -36,6 +36,7 @@ packages = [
3636
"ethereum_spec_tools",
3737
"ethereum_spec_tools.evm_tools",
3838
"ethereum_spec_tools.evm_tools.t8n",
39+
"ethereum_spec_tools.evm_tools.t8n.evm_trace",
3940
"ethereum_spec_tools.evm_tools.b11r",
4041
"ethereum_spec_tools.evm_tools.statetest",
4142
"ethereum_spec_tools.evm_tools.loaders",
@@ -223,6 +224,9 @@ markers = [
223224
"slow: marks tests as slow (deselect with '-m \"not slow\"')",
224225
"bigmem: marks tests as big memory (deselect with '-m \"not bigmem\"')",
225226
"evm_tools: marks tests as evm_tools (deselect with '-m \"not evm_tools\"')",
227+
"json_blockchain_tests: marks tests as json_blockchain_tests (deselect with '-m \"not json_blockchain_tests\"')",
228+
"json_state_tests: marks tests as json_state_tests (deselect with '-m \"not json_state_tests\"')",
229+
"vm_test: marks tests as vm_test (deselect with '-m \"not vm_test\"')",
226230
]
227231

228232
[tool.coverage.run]

src/ethereum/arrow_glacier/fork.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -771,7 +771,6 @@ def process_transaction(
771771
access_list_storage_keys=access_list_storage_keys,
772772
index_in_block=index,
773773
tx_hash=get_transaction_hash(encode_transaction(tx)),
774-
traces=[],
775774
)
776775

777776
message = prepare_message(block_env, tx_env, tx)

src/ethereum/arrow_glacier/vm/__init__.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,6 @@ class TransactionEnvironment:
9393
access_list_storage_keys: Set[Tuple[Address, Bytes32]]
9494
index_in_block: Optional[Uint]
9595
tx_hash: Optional[Hash32]
96-
traces: List[dict]
9796

9897

9998
@dataclass

src/ethereum/berlin/fork.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -658,7 +658,6 @@ def process_transaction(
658658
access_list_storage_keys=access_list_storage_keys,
659659
index_in_block=index,
660660
tx_hash=get_transaction_hash(encode_transaction(tx)),
661-
traces=[],
662661
)
663662

664663
message = prepare_message(block_env, tx_env, tx)

src/ethereum/berlin/vm/__init__.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,6 @@ class TransactionEnvironment:
9292
access_list_storage_keys: Set[Tuple[Address, Bytes32]]
9393
index_in_block: Optional[Uint]
9494
tx_hash: Optional[Hash32]
95-
traces: List[dict]
9695

9796

9897
@dataclass

src/ethereum/byzantium/fork.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -635,7 +635,6 @@ def process_transaction(
635635
gas=gas,
636636
index_in_block=index,
637637
tx_hash=get_transaction_hash(tx),
638-
traces=[],
639638
)
640639

641640
message = prepare_message(block_env, tx_env, tx)

src/ethereum/byzantium/vm/__init__.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,6 @@ class TransactionEnvironment:
9090
gas: Uint
9191
index_in_block: Uint
9292
tx_hash: Optional[Hash32]
93-
traces: List[dict]
9493

9594

9695
@dataclass

src/ethereum/cancun/fork.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -563,7 +563,6 @@ def process_system_transaction(
563563
blob_versioned_hashes=(),
564564
index_in_block=None,
565565
tx_hash=None,
566-
traces=[],
567566
)
568567

569568
system_tx_message = Message(
@@ -755,7 +754,6 @@ def process_transaction(
755754
blob_versioned_hashes=blob_versioned_hashes,
756755
index_in_block=index,
757756
tx_hash=get_transaction_hash(encode_transaction(tx)),
758-
traces=[],
759757
)
760758

761759
message = prepare_message(block_env, tx_env, tx)

src/ethereum/cancun/vm/__init__.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,6 @@ class TransactionEnvironment:
104104
blob_versioned_hashes: Tuple[VersionedHash, ...]
105105
index_in_block: Optional[Uint]
106106
tx_hash: Optional[Hash32]
107-
traces: List[dict]
108107

109108

110109
@dataclass

0 commit comments

Comments
 (0)