Skip to content

Commit

Permalink
Merge pull request #241 from White-Whale-Defi-Platform/nguyen/v3-upgrade
Browse files Browse the repository at this point in the history
Add ibchooks store key to upgrade
  • Loading branch information
faddat authored Sep 14, 2023
2 parents ad4cf76 + d822be0 commit c122b1f
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion app/upgrades/v3/constants.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ package v3
import (
"github.com/White-Whale-Defi-Platform/migaloo-chain/v3/app/upgrades"
store "github.com/cosmos/cosmos-sdk/store/types"
ibchookstypes "github.com/terra-money/core/v2/x/ibc-hooks/types"
)

// UpgradeName defines the on-chain upgrade name for the Migaloo v2 upgrade.
Expand All @@ -11,5 +12,7 @@ const UpgradeName = "v2.2.5"
var Upgrade = upgrades.Upgrade{
UpgradeName: UpgradeName,
CreateUpgradeHandler: CreateUpgradeHandler,
StoreUpgrades: store.StoreUpgrades{},
StoreUpgrades: store.StoreUpgrades{
Added: []string{ibchookstypes.StoreKey},
},
}

0 comments on commit c122b1f

Please sign in to comment.