Skip to content

Commit aea3f46

Browse files
authored
fix: bump pyevm to 0.10 range (#63)
1 parent 68b0527 commit aea3f46

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

evm_trace/vmtrace.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -133,13 +133,13 @@ def to_trace_frames(
133133
pc=op.pc,
134134
op=op.op,
135135
depth=depth,
136-
stack=[to_int(val) for _, val in stack.values],
136+
stack=[to_int(val) for val in stack.values],
137137
memory=read_memory(0, len(memory)),
138138
storage=storage.copy(),
139139
)
140140

141141
if op.op in ["CALL", "DELEGATECALL", "STATICCALL"]:
142-
call_address = Address.__eth_pydantic_validate__(stack.values[-2][1])
142+
call_address = Address.__eth_pydantic_validate__(stack.values[-2])
143143

144144
if op.ex:
145145
if op.ex.mem:

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@
6161
include_package_data=True,
6262
install_requires=[
6363
"pydantic>=2.5.2,<3",
64-
"py-evm>=0.7.0a4,<0.9", # NOTE: We support both 0.7 and 0.8.
64+
"py-evm>=0.10.0b6,<0.11",
6565
"eth-utils>=2.3.1,<3",
6666
"msgspec>=0.8",
6767
"eth-pydantic-types>=0.1.0a5",

0 commit comments

Comments
 (0)