Skip to content

Commit 03d4979

Browse files
committedAug 31, 2023
fix: added v0.10.0 to upgrades.go
1 parent 4b526df commit 03d4979

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)
Please sign in to comment.