Skip to content

Commit

Permalink
pre-upgrade fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
woof-chihuahua committed Feb 4, 2025
1 parent 57a8946 commit 808edba
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
ARG IMG_TAG=latest
ARG PLATFORM="linux/amd64"
ARG GO_VERSION="1.22"
ARG GO_VERSION="1.23"
ARG RUNNER_IMAGE="gcr.io/distroless/static"

FROM --platform=${PLATFORM} golang:${GO_VERSION}-alpine3.18 as builder
Expand Down
4 changes: 2 additions & 2 deletions app/app.go
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ import (
const (
Bech32Prefix = "chihuahua"
Name = "chihuahua"
UpgradeName = "v9.0.0"
UpgradeName = "v9.0.1"
NodeDir = ".chihuahuad"
)

Expand Down Expand Up @@ -1392,7 +1392,7 @@ func (app *App) RegisterUpgradeHandlers(cfg module.Configurator) {
return app.mm.RunMigrations(c, cfg, vm)
})

app.UpgradeKeeper.SetUpgradeHandler("v9.0.0", func(ctx context.Context, plan upgradetypes.Plan, vm module.VersionMap) (module.VersionMap, error) {
app.UpgradeKeeper.SetUpgradeHandler("v9.0.1", func(ctx context.Context, plan upgradetypes.Plan, vm module.VersionMap) (module.VersionMap, error) {
return app.mm.RunMigrations(ctx, cfg, vm)

})
Expand Down

0 comments on commit 808edba

Please sign in to comment.