Skip to content

Commit

Permalink
v3.0.4 upgrade handler
Browse files Browse the repository at this point in the history
  • Loading branch information
pr0n00gler committed Apr 16, 2024
1 parent 44f87d3 commit b37ac66
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions app/app.go
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ import (
genutiltypes "github.com/cosmos/cosmos-sdk/x/genutil/types"
tendermint "github.com/cosmos/ibc-go/v7/modules/light-clients/07-tendermint"

v303 "github.com/neutron-org/neutron/v3/app/upgrades/v3.0.3"
v304 "github.com/neutron-org/neutron/v3/app/upgrades/v3.0.4"
"github.com/neutron-org/neutron/v3/docs"

"github.com/neutron-org/neutron/v3/app/upgrades"
Expand Down Expand Up @@ -184,7 +184,7 @@ const (
)

var (
Upgrades = []upgrades.Upgrade{v030.Upgrade, v044.Upgrade, v200.Upgrade, v202.Upgrade, v301.Upgrade, v303.Upgrade}
Upgrades = []upgrades.Upgrade{v030.Upgrade, v044.Upgrade, v200.Upgrade, v202.Upgrade, v301.Upgrade, v304.Upgrade}

// DefaultNodeHome default home directories for the application daemon
DefaultNodeHome string
Expand Down
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
package v303
package v304

import (
"github.com/neutron-org/neutron/v3/app/upgrades"
)

const (
// UpgradeName defines the on-chain upgrade name.
UpgradeName = "v3.0.3"
UpgradeName = "v3.0.4"
)

var Upgrade = upgrades.Upgrade{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package v303
package v304

import (
"fmt"
Expand Down

0 comments on commit b37ac66

Please sign in to comment.