Skip to content

Commit

Permalink
3.0.5 hotfix release (#933)
Browse files Browse the repository at this point in the history
* 3.0.5 release

* Revert "Register migration handler (#912)"

This reverts commit 579023e.
  • Loading branch information
philipsu522 authored Jun 29, 2023
1 parent f5aafb6 commit ab785df
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions x/dex/module.go
Original file line number Diff line number Diff line change
Expand Up @@ -209,9 +209,6 @@ func (am AppModule) RegisterServices(cfg module.Configurator) {
_ = cfg.RegisterMigration(types.ModuleName, 15, func(ctx sdk.Context) error {
return migrations.V15ToV16(ctx, am.keeper)
})
_ = cfg.RegisterMigration(types.ModuleName, 16, func(ctx sdk.Context) error {
return migrations.V16ToV17(ctx, am.keeper)
})
}

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

// ConsensusVersion implements ConsensusVersion.
func (AppModule) ConsensusVersion() uint64 { return 17 }
func (AppModule) ConsensusVersion() uint64 { return 16 }

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

0 comments on commit ab785df

Please sign in to comment.