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
Geth provides an RPC endpoint to rewind the chain head: debug.setHead().
However, the entire procedure is highly inefficient, it takes around 500ms to revert a single block on my machine. Notably, the actual state execution accounts for only ~20ms of that time.
This RPC should be optimized for providing a better UX.
The text was updated successfully, but these errors were encountered:
Geth provides an RPC endpoint to rewind the chain head: debug.setHead().
However, the entire procedure is highly inefficient, it takes around 500ms to revert a single block on my machine. Notably, the actual state execution accounts for only ~20ms of that time.
This RPC should be optimized for providing a better UX.
The text was updated successfully, but these errors were encountered: