From 76ae2a14bbe11c645d728c19c9ab5af8a29a677e Mon Sep 17 00:00:00 2001 From: yumeiyin <155420652+yumeiyin@users.noreply.github.com> Date: Fri, 24 May 2024 11:59:30 +0200 Subject: [PATCH] chore: fix function name (#20442) Co-authored-by: Marko --- x/gov/keeper/migrations.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/x/gov/keeper/migrations.go b/x/gov/keeper/migrations.go index 5b366b9b73..922fb209d7 100644 --- a/x/gov/keeper/migrations.go +++ b/x/gov/keeper/migrations.go @@ -39,7 +39,7 @@ func (m Migrator) Migrate4to5(ctx context.Context) error { return v5.MigrateStore(ctx, m.keeper.KVStoreService, m.keeper.cdc, m.keeper.Constitution) } -// Migrate4to5 migrates from version 5 to 6. +// Migrate5to6 migrates from version 5 to 6. func (m Migrator) Migrate5to6(ctx context.Context) error { return v6.MigrateStore(ctx, m.keeper.KVStoreService, m.keeper.Params, m.keeper.Proposals) }