We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 994a94a commit 03f0d85Copy full SHA for 03f0d85
x/ccv/consumer/module.go
@@ -131,6 +131,9 @@ func (am AppModule) RegisterServices(cfg module.Configurator) {
131
if err := cfg.RegisterMigration(consumertypes.ModuleName, 2, m.Migrate2to3); err != nil {
132
panic(fmt.Sprintf("failed to register migrator for %s: %s -- from 2 -> 3", consumertypes.ModuleName, err))
133
}
134
+ if err := cfg.RegisterMigration(consumertypes.ModuleName, 3, m.Migrate3to4); err != nil {
135
+ panic(fmt.Sprintf("failed to register migrator for %s: %s -- from 3 -> 4", consumertypes.ModuleName, err))
136
+ }
137
138
139
// InitGenesis performs genesis initialization for the consumer module. It returns
0 commit comments