Skip to content

Commit

Permalink
feat: upgrade handler v0.6.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Lockwarr committed Jul 18, 2024
1 parent e769de4 commit 8b18929
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 14 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"
v060 "github.com/Nolus-Protocol/nolus-core/app/upgrades/v060"
v061 "github.com/Nolus-Protocol/nolus-core/app/upgrades/v061"
"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{v060.Upgrade}
Upgrades = []upgrades.Upgrade{v061.Upgrade}
)

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

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

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

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

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

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

0 comments on commit 8b18929

Please sign in to comment.