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
Currently, we delete an MST block from the db the moment it's no longer needed for the current state of the db.
If someone is walking the MST via something like getBlocks, and the repo changes midway through, they'll get errors. If the repo is being updated rapidly, they'll probably never get a full read.
Rather than deleting them instantly we could tombstone them and garbage collect after some delay.
The text was updated successfully, but these errors were encountered:
Currently, we delete an MST block from the db the moment it's no longer needed for the current state of the db.
If someone is walking the MST via something like
getBlocks
, and the repo changes midway through, they'll get errors. If the repo is being updated rapidly, they'll probably never get a full read.Rather than deleting them instantly we could tombstone them and garbage collect after some delay.
The text was updated successfully, but these errors were encountered: