Skip to content

Commit

Permalink
fix(uniond): append v0.10.0 to upgrades to go (#595)
Browse files Browse the repository at this point in the history
  • Loading branch information
cor authored Aug 31, 2023
2 parents de4ae01 + 03d4979 commit 68eec59
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion uniond/app/upgrades.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,13 @@ package app
import (
"fmt"
"union/app/upgrades"
"union/app/upgrades/v0_10_0"
"union/app/upgrades/v0_9_0"

upgradetypes "github.com/cosmos/cosmos-sdk/x/upgrade/types"
)

var Upgrades = []upgrades.Upgrade{v0_9_0.Upgrade}
var Upgrades = []upgrades.Upgrade{v0_9_0.Upgrade, v0_10_0.Upgrade}

// configure store loader that checks if version == upgradeHeight and applies store upgrades
func (app *UnionApp) setupUpgradeStoreLoaders() {
Expand Down

0 comments on commit 68eec59

Please sign in to comment.