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
{{ message }}
This repository was archived by the owner on Feb 17, 2025. It is now read-only.
We don't write anything to stack after pop(), so everything works fine, but looks really bad. Maybe better to use auto& val = stack[i]
instead of auto& val = stack.pop()
(it will change address_in_stack and rw_circuit tests will start to fail, will need to also update tests)
We don't write anything to stack after pop(), so everything works fine, but looks really bad. Maybe better to use
auto& val = stack[i]instead of
auto& val = stack.pop()(it will change address_in_stack and rw_circuit tests will start to fail, will need to also update tests)
evm-assigner/lib/assigner/evmone/instructions.hpp
Line 402 in cfb97c9