Skip to content

Commit dc7a8b6

Browse files
nit: error in migration panic (#5330) (#5331)
(cherry picked from commit 5ed4735) Co-authored-by: Carlos Rodriguez <[email protected]>
1 parent 3d98969 commit dc7a8b6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

modules/light-clients/08-wasm/module.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ func (am AppModule) RegisterServices(cfg module.Configurator) {
114114

115115
wasmMigrator := keeper.NewMigrator(am.keeper)
116116
if err := cfg.RegisterMigration(types.ModuleName, 1, wasmMigrator.MigrateChecksums); err != nil {
117-
panic(fmt.Errorf("failed to migrate checksums from version 1 to 2: %v", err))
117+
panic(fmt.Errorf("failed to migrate 08-wasm module from version 1 to 2 (checksums migration to collections): %v", err))
118118
}
119119
}
120120

0 commit comments

Comments
 (0)