File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff 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 :
Original file line number Diff line number Diff line change 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" ,
You can’t perform that action at this time.
0 commit comments