Skip to content

Commit

Permalink
Add upgrade v1.0.3.2
Browse files Browse the repository at this point in the history
  • Loading branch information
Charles Dusek committed May 12, 2023
1 parent 2cdae63 commit 304bd33
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions app/app.go
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ import (
gravitytypes "github.com/onomyprotocol/cosmos-gravity-bridge/module/x/gravity/types"
v1_0_1 "github.com/onomyprotocol/onomy/app/upgrades/v1.0.1"
v1_0_3 "github.com/onomyprotocol/onomy/app/upgrades/v1.0.3"
v1_0_3_1 "github.com/onomyprotocol/onomy/app/upgrades/v1.0.3.1"
v1_0_3_2 "github.com/onomyprotocol/onomy/app/upgrades/v1.0.3.2"
"github.com/onomyprotocol/onomy/docs"
"github.com/onomyprotocol/onomy/x/dao"
daoclient "github.com/onomyprotocol/onomy/x/dao/client"
Expand Down Expand Up @@ -330,7 +330,7 @@ func New( // nolint:funlen // app new cosmos func

app.UpgradeKeeper.SetUpgradeHandler(v1_0_1.Name, v1_0_1.UpgradeHandler)
app.UpgradeKeeper.SetUpgradeHandler(v1_0_3.Name, v1_0_3.UpgradeHandler)
app.UpgradeKeeper.SetUpgradeHandler(v1_0_3_1.Name, v1_0_3_1.UpgradeHandler)
app.UpgradeKeeper.SetUpgradeHandler(v1_0_3_2.Name, v1_0_3_2.UpgradeHandler)

// Create IBC Keeper
app.IBCKeeper = ibckeeper.NewKeeper(
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// Package v1_0_3_1 is contains chain upgrade of the corresponding version.
package v1_0_3_1 //nolint:revive,stylecheck // app version
// Package v1_0_3_2 is contains chain upgrade of the corresponding version.
package v1_0_3_2 //nolint:revive,stylecheck // app version

import (
sdk "github.com/cosmos/cosmos-sdk/types"
Expand All @@ -8,7 +8,7 @@ import (
)

// Name is migration name.
const Name = "v1.0.3.1"
const Name = "v1.0.3.2"

// UpgradeHandler is an x/upgrade handler.
func UpgradeHandler(_ sdk.Context, _ upgradetypes.Plan, vm module.VersionMap) (module.VersionMap, error) {
Expand Down

0 comments on commit 304bd33

Please sign in to comment.