Skip to content

Commit

Permalink
Add ibcratelimit to upgrade handler.
Browse files Browse the repository at this point in the history
  • Loading branch information
Matthew Witkowski committed Nov 20, 2023
1 parent ea818b0 commit 23642f7
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions app/upgrades.go
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ import (
"github.com/provenance-io/provenance/x/exchange"
"github.com/provenance-io/provenance/x/hold"
ibchookstypes "github.com/provenance-io/provenance/x/ibchooks/types"
ibcratelimit "github.com/provenance-io/provenance/x/ibcratelimit"
markertypes "github.com/provenance-io/provenance/x/marker/types"
msgfeetypes "github.com/provenance-io/provenance/x/msgfees/types"
oracletypes "github.com/provenance-io/provenance/x/oracle/types"
Expand Down Expand Up @@ -183,6 +184,7 @@ var upgrades = map[string]appUpgrade{

return vm, nil
},
Added: []string{ibcratelimit.ModuleName},
},
"tourmaline": { // upgrade for v1.18.0
Handler: func(ctx sdk.Context, app *App, vm module.VersionMap) (module.VersionMap, error) {
Expand All @@ -194,6 +196,7 @@ var upgrades = map[string]appUpgrade{

return vm, nil
},
Added: []string{ibcratelimit.ModuleName},
},
// TODO - Add new upgrade definitions here.
}
Expand Down

0 comments on commit 23642f7

Please sign in to comment.