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 node refuse to startup if versiondb's version don't match iavl version.
It's actually possible to automatically fix the version mismatch:
if versiondb's version is larger than iavl one, usually due to rollback, trim versiondb version using rocksdb OpenDbAndTrim api.
if versiondb's version is smaller than iavl one, usually due to un-graceful shutdown, since two DBs are committed asynchronously, we can automatically catch-up versiondb with the iavl tree.
The text was updated successfully, but these errors were encountered:
Currently node refuse to startup if versiondb's version don't match iavl version.
It's actually possible to automatically fix the version mismatch:
OpenDbAndTrim
api.The text was updated successfully, but these errors were encountered: