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
The lifetime of the evmone::VM is unnecessarily too short because it matches the lifetime of EVM. E.g. for historical block execution a new EVM is created for each block.
evmone::VM is designed in a way one instance is enough to handle any execution in a single thread. However, the current API for tracing may be missing a way to remove tracers.
The text was updated successfully, but these errors were encountered:
The lifetime of the
evmone::VM
is unnecessarily too short because it matches the lifetime ofEVM
. E.g. for historical block execution a newEVM
is created for each block.evmone::VM
is designed in a way one instance is enough to handle any execution in a single thread. However, the current API for tracing may be missing a way to remove tracers.The text was updated successfully, but these errors were encountered: