Skip to content

Commit 68eec59

Browse files
authored
fix(uniond): append v0.10.0 to upgrades to go (#595)
2 parents de4ae01 + 03d4979 commit 68eec59

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

uniond/app/upgrades.go

+2-1
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,13 @@ package app
33
import (
44
"fmt"
55
"union/app/upgrades"
6+
"union/app/upgrades/v0_10_0"
67
"union/app/upgrades/v0_9_0"
78

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

11-
var Upgrades = []upgrades.Upgrade{v0_9_0.Upgrade}
12+
var Upgrades = []upgrades.Upgrade{v0_9_0.Upgrade, v0_10_0.Upgrade}
1213

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

0 commit comments

Comments
 (0)