Skip to content

Commit

Permalink
fix: CNS-epoch-payments-keys-fix (#1358)
Browse files Browse the repository at this point in the history
* fix the key decoding

* fix

* fix

* make it more explicit

* add upgrade handler

---------

Co-authored-by: Yaroms <[email protected]>
Co-authored-by: Yarom Swisa <[email protected] git config --global user.name Yarom>
  • Loading branch information
3 people authored Apr 7, 2024
1 parent 4fc5538 commit 72233db
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 0 deletions.
1 change: 1 addition & 0 deletions app/app.go
Original file line number Diff line number Diff line change
Expand Up @@ -188,6 +188,7 @@ var Upgrades = []upgrades.Upgrade{
upgrades.Upgrade_1_0_0,
upgrades.Upgrade_1_0_1,
upgrades.Upgrade_1_1_0,
upgrades.Upgrade_1_2_0,
}

// this line is used by starport scaffolding # stargate/wasm/app/enabledProposals
Expand Down
6 changes: 6 additions & 0 deletions app/upgrades/empty_upgrades.go
Original file line number Diff line number Diff line change
Expand Up @@ -229,3 +229,9 @@ var Upgrade_1_1_0 = Upgrade{
CreateUpgradeHandler: defaultUpgradeHandler,
StoreUpgrades: store.StoreUpgrades{},
}

var Upgrade_1_2_0 = Upgrade{
UpgradeName: "v1.2.0",
CreateUpgradeHandler: defaultUpgradeHandler,
StoreUpgrades: store.StoreUpgrades{},
}

0 comments on commit 72233db

Please sign in to comment.