We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8ff023e commit e7825ccCopy full SHA for e7825cc
x/bank/keeper/migrations.go
@@ -26,3 +26,9 @@ func (m Migrator) Migrate2to3(ctx context.Context) error {
26
func (m Migrator) Migrate3to4(ctx context.Context) error {
27
return nil
28
}
29
+
30
+// Migrate3_V046_4_To_V046_5 fixes migrations from version 2 to for chains based on SDK 0.46.0 - v0.46.4 ONLY.
31
+// See v046.Migrate_V046_4_To_V046_5 for more details.
32
+func (m Migrator) Migrate3_V046_4_To_V046_5(ctx sdk.Context) error {
33
+ return v046.Migrate_V046_4_To_V046_5(ctx.KVStore(m.keeper.storeKey))
34
+}
0 commit comments