We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents de4ae01 + 03d4979 commit 68eec59Copy full SHA for 68eec59
uniond/app/upgrades.go
@@ -3,12 +3,13 @@ package app
3
import (
4
"fmt"
5
"union/app/upgrades"
6
+ "union/app/upgrades/v0_10_0"
7
"union/app/upgrades/v0_9_0"
8
9
upgradetypes "github.com/cosmos/cosmos-sdk/x/upgrade/types"
10
)
11
-var Upgrades = []upgrades.Upgrade{v0_9_0.Upgrade}
12
+var Upgrades = []upgrades.Upgrade{v0_9_0.Upgrade, v0_10_0.Upgrade}
13
14
// configure store loader that checks if version == upgradeHeight and applies store upgrades
15
func (app *UnionApp) setupUpgradeStoreLoaders() {
0 commit comments