Skip to content

Commit d285a34

Browse files
committed
Revert "Register migration handler (#912)"
This reverts commit 579023e.
1 parent 4b007ed commit d285a34

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

x/dex/module.go

+1-4
Original file line numberDiff line numberDiff line change
@@ -209,9 +209,6 @@ func (am AppModule) RegisterServices(cfg module.Configurator) {
209209
_ = cfg.RegisterMigration(types.ModuleName, 15, func(ctx sdk.Context) error {
210210
return migrations.V15ToV16(ctx, am.keeper)
211211
})
212-
_ = cfg.RegisterMigration(types.ModuleName, 16, func(ctx sdk.Context) error {
213-
return migrations.V16ToV17(ctx, am.keeper)
214-
})
215212
}
216213

217214
// RegisterInvariants registers the capability module's invariants.
@@ -236,7 +233,7 @@ func (am AppModule) ExportGenesis(ctx sdk.Context, cdc codec.JSONCodec) json.Raw
236233
}
237234

238235
// ConsensusVersion implements ConsensusVersion.
239-
func (AppModule) ConsensusVersion() uint64 { return 17 }
236+
func (AppModule) ConsensusVersion() uint64 { return 16 }
240237

241238
// BeginBlock executes all ABCI BeginBlock logic respective to the capability module.
242239
func (am AppModule) BeginBlock(ctx sdk.Context, _ abci.RequestBeginBlock) {

0 commit comments

Comments
 (0)