Skip to content

Commit

Permalink
chore: rename upgrade handler to v0.6.2
Browse files Browse the repository at this point in the history
  • Loading branch information
Lockwarr committed Jul 23, 2024
1 parent 4db8ee3 commit 8816d78
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 13 deletions.
4 changes: 2 additions & 2 deletions app/app.go
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ import (
"github.com/Nolus-Protocol/nolus-core/app/keepers"
appparams "github.com/Nolus-Protocol/nolus-core/app/params"
"github.com/Nolus-Protocol/nolus-core/app/upgrades"
v061 "github.com/Nolus-Protocol/nolus-core/app/upgrades/v061"
v062 "github.com/Nolus-Protocol/nolus-core/app/upgrades/v062"
"github.com/Nolus-Protocol/nolus-core/docs"

wasmkeeper "github.com/CosmWasm/wasmd/x/wasm/keeper"
Expand All @@ -67,7 +67,7 @@ const (
var (
DefaultNodeHome string

Upgrades = []upgrades.Upgrade{v061.Upgrade}
Upgrades = []upgrades.Upgrade{v062.Upgrade}
)

var (
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package v061
package v062

import (
store "cosmossdk.io/store/types"
Expand All @@ -7,7 +7,7 @@ import (

const (
// UpgradeName defines the on-chain upgrades name.
UpgradeName = "v0.6.1"
UpgradeName = "v0.6.2"
)

var Upgrade = upgrades.Upgrade{
Expand Down
18 changes: 9 additions & 9 deletions app/upgrades/v061/upgrades.go → app/upgrades/v062/upgrades.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package v061
package v062

import (
"context"
Expand Down Expand Up @@ -28,14 +28,14 @@ func CreateUpgradeHandler(
}

ctx.Logger().Info(`
$$\ $$\ $$\ $$$$$$\ $$$$$$\ $$\
$$$\ $$ | $$ | $$$ __$$\ $$ __$$\ $$$$ |
$$$$\ $$ | $$$$$$\ $$ |$$\ $$\ $$$$$$$\ $$\ $$\ $$$$\ $$ | $$ / \__| \_$$ |
$$ $$\$$ |$$ __$$\ $$ |$$ | $$ |$$ _____| \$$\ $$ |$$\$$\$$ | $$$$$$$\ $$ |
$$ \$$$$ |$$ / $$ |$$ |$$ | $$ |\$$$$$$\ \$$\$$ / $$ \$$$$ | $$ __$$\ $$ |
$$ |\$$$ |$$ | $$ |$$ |$$ | $$ | \____$$\ \$$$ / $$ |\$$$ | $$ / $$ | $$ |
$$ | \$$ |\$$$$$$ |$$ |\$$$$$$ |$$$$$$$ | \$ / \$$$$$$ /$$\ $$$$$$ |$$\ $$$$$$\
\__| \__| \______/ \__| \______/ \_______/ \_/ \______/ \__|\______/ \__|\______|
$$\ $$\ $$\ $$$$$$\ $$$$$$\ $$$$$$\
$$$\ $$ | $$ | $$$ __$$\ $$ __$$\ $$ __$$\
$$$$\ $$ | $$$$$$\ $$ |$$\ $$\ $$$$$$$\ $$\ $$\ $$$$\ $$ | $$ / \__| \__/ $$ |
$$ $$\$$ |$$ __$$\ $$ |$$ | $$ |$$ _____| \$$\ $$ |$$\$$\$$ | $$$$$$$\ $$$$$$ |
$$ \$$$$ |$$ / $$ |$$ |$$ | $$ |\$$$$$$\ \$$\$$ / $$ \$$$$ | $$ __$$\ $$ ____/
$$ |\$$$ |$$ | $$ |$$ |$$ | $$ | \____$$\ \$$$ / $$ |\$$$ | $$ / $$ | $$ |
$$ | \$$ |\$$$$$$ |$$ |\$$$$$$ |$$$$$$$ | \$ / \$$$$$$ /$$\ $$$$$$ |$$\ $$$$$$$$\
\__| \__| \______/ \__| \______/ \_______/ \_/ \______/ \__|\______/ \__|\________|
$$$$$$$$\ $$\
$$ _____| $$ |
Expand Down

0 comments on commit 8816d78

Please sign in to comment.