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
Since we are using a new node key format (cosmos/iavl#676), we need to migrate the original iavl store to the new version.
The migration will proceed in two main stages. Let's assume the current store keeps fromHeight to toHeight of blocks.
it will create the snapshot for the fromHeight through exporting in the original version and then import that snapshot into the new version.
it will iterate ChangeSets for fromHeight+1 to toHeight using TraverseStateChanges in the original version and then save those ChangeSets using SaveChangeSet in the new version
Since we are using a new node key format (cosmos/iavl#676), we need to migrate the original iavl store to the new version.
The migration will proceed in two main stages. Let's assume the current store keeps
fromHeight
totoHeight
of blocks.fromHeight
through exporting in the original version and then import that snapshot into the new version.ChangeSets
forfromHeight+1
totoHeight
usingTraverseStateChanges
in the original version and then save thoseChangeSets
usingSaveChangeSet
in the new versionref: #15568, cosmos/iavl#675, cosmos/iavl#676
The text was updated successfully, but these errors were encountered: