Skip to content

Commit

Permalink
change package name
Browse files Browse the repository at this point in the history
  • Loading branch information
pierstab committed Jan 27, 2023
1 parent 16e44b3 commit 7fce3e5
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions app/app.go
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ import (
minttypes "github.com/rebuschain/rebus.core/v1/x/mint/types"

upgradeV1 "github.com/rebuschain/rebus.core/v1/app/upgrades/v1"
upgradeV2 "github.com/rebuschain/rebus.core/v1/app/upgrades/v2"
upgradeV3 "github.com/rebuschain/rebus.core/v1/app/upgrades/v3"
)

func init() {
Expand Down Expand Up @@ -969,8 +969,8 @@ func (app *Rebus) setupUpgradeHandlers() {
)

app.UpgradeKeeper.SetUpgradeHandler(
upgradeV2.UpgradeName,
upgradeV2.CreateUpgradeHandler(app.mm, app.configurator),
upgradeV3.UpgradeName,
upgradeV3.CreateUpgradeHandler(app.mm, app.configurator),
)

var storeUpgrades *storetypes.StoreUpgrades
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package v1
package v3

const (
// UpgradeName is the shared upgrade plan name for mainnet and testnet
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package v1
package v3

import (
sdk "github.com/cosmos/cosmos-sdk/types"
Expand Down

0 comments on commit 7fce3e5

Please sign in to comment.