You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When checking the VM Trace, the TLOAD op should put the pushed value into push.
Actual behaviour
The push is empty.
Steps to reproduce the behaviour
By comparing the results of curl -X POST -H "Content-Type: application/json" --data '{"jsonrpc":"2.0","method":"trace_replayTransaction","params":["0xae94f8ce4a104d4804fbe06e9c9d64fcffa31d767c05dfcab6526208a03e81dc", ["vmTrace"]],"id":1}' http://localhost:8545
and curl -X POST -H "Content-Type: application/json" --data '{"jsonrpc":"2.0","method":"debug_traceTransaction","params":["0xae94f8ce4a104d4804fbe06e9c9d64fcffa31d767c05dfcab6526208a03e81dc"],"id":1}' http://localhost:8545, the push of TLOAD (e.g. pc 84) in the first result is empty, which doesn't match the stack info of the latter one.
The text was updated successfully, but these errors were encountered:
System information
Erigon version: v3.0.0-alpha5
OS & Version: Ubuntu 22.04.5
Expected behaviour
When checking the VM Trace, the TLOAD op should put the pushed value into
push
.Actual behaviour
The push is empty.
Steps to reproduce the behaviour
By comparing the results of
curl -X POST -H "Content-Type: application/json" --data '{"jsonrpc":"2.0","method":"trace_replayTransaction","params":["0xae94f8ce4a104d4804fbe06e9c9d64fcffa31d767c05dfcab6526208a03e81dc", ["vmTrace"]],"id":1}' http://localhost:8545
and
curl -X POST -H "Content-Type: application/json" --data '{"jsonrpc":"2.0","method":"debug_traceTransaction","params":["0xae94f8ce4a104d4804fbe06e9c9d64fcffa31d767c05dfcab6526208a03e81dc"],"id":1}' http://localhost:8545
, the push of TLOAD (e.g. pc 84) in the first result is empty, which doesn't match the stack info of the latter one.The text was updated successfully, but these errors were encountered: