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 has been archived by the owner on May 19, 2023. It is now read-only.
The EventsEmitter can emit reorgOutOfRange event which specifies that reorg happened outside the confirmation range, which tells us that there is a possibility that our current state is invalid.
We have to handle this edge-case somehow. Generally, the solution is to rebuild the state, there are two approaches how to do that:
Notify Devops that this happened with email, but this requires to implement mailing support - bleh.
Automatically rebuild the database. This will be complex though as the precache can take long time to run, so we would want to make some sort of "precache on different DB file" and then swap them. But even then this might give some problems.
The text was updated successfully, but these errors were encountered:
The EventsEmitter can emit
reorgOutOfRange
event which specifies that reorg happened outside the confirmation range, which tells us that there is a possibility that our current state is invalid.We have to handle this edge-case somehow. Generally, the solution is to rebuild the state, there are two approaches how to do that:
The text was updated successfully, but these errors were encountered: