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
We don't currently trace "selfdestruct" events in the Ethereum JSON-RPC trace_block output, but we probably should for feature completeness. To do this, we'll need to implement both of:
Then, every time we see an EVM actor invoked, we can lookup the "after" state to determine if it selfdestructed.
Unfortunately, there's no reliable way to do this simply by looking at the state at the end of a block because an EVM smart contract can selfdestruct and revive multiple times.
The text was updated successfully, but these errors were encountered:
We don't currently trace "selfdestruct" events in the Ethereum JSON-RPC
trace_block
output, but we probably should for feature completeness. To do this, we'll need to implement both of:Then, every time we see an EVM actor invoked, we can lookup the "after" state to determine if it selfdestructed.
Unfortunately, there's no reliable way to do this simply by looking at the state at the end of a block because an EVM smart contract can selfdestruct and revive multiple times.
The text was updated successfully, but these errors were encountered: