Skip to content

Commit

Permalink
move upgrades to 501
Browse files Browse the repository at this point in the history
  • Loading branch information
jcompagni10 committed Oct 11, 2024
1 parent 4c66a83 commit 2b14c13
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 10 deletions.
4 changes: 2 additions & 2 deletions app/app.go
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ import (
oracleclient "github.com/skip-mev/slinky/service/clients/oracle"
servicemetrics "github.com/skip-mev/slinky/service/metrics"

v500 "github.com/neutron-org/neutron/v5/app/upgrades/v5.0.0"
v501 "github.com/neutron-org/neutron/v5/app/upgrades/v5.0.1"
"github.com/neutron-org/neutron/v5/x/globalfee"
globalfeetypes "github.com/neutron-org/neutron/v5/x/globalfee/types"

Expand Down Expand Up @@ -221,7 +221,7 @@ const (
)

var (
Upgrades = []upgrades.Upgrade{v500.Upgrade}
Upgrades = []upgrades.Upgrade{v501.Upgrade}

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

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

const (
// UpgradeName defines the on-chain upgrade name.
UpgradeName = "v5.0.0"
UpgradeName = "v5.0.1"
)

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

import (
"context"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package v500_test
package v501_test

import (
"testing"
Expand All @@ -8,7 +8,7 @@ import (
sdk "github.com/cosmos/cosmos-sdk/types"
bankkeeper "github.com/cosmos/cosmos-sdk/x/bank/keeper"

v500 "github.com/neutron-org/neutron/v5/app/upgrades/v5.0.0"
v501 "github.com/neutron-org/neutron/v5/app/upgrades/v5.0.1"
"github.com/neutron-org/neutron/v5/testutil/common/sample"

"github.com/stretchr/testify/suite"
Expand Down Expand Up @@ -46,7 +46,7 @@ func (suite *UpgradeTestSuite) TestPoolMigrationSingleShareHolder() {

// run upgrade
upgrade := upgradetypes.Plan{
Name: v500.UpgradeName,
Name: v501.UpgradeName,
Info: "some text here",
Height: 100,
}
Expand Down Expand Up @@ -89,7 +89,7 @@ func (suite *UpgradeTestSuite) TestPoolMigrationMultiShareHolder() {

// run upgrade
upgrade := upgradetypes.Plan{
Name: v500.UpgradeName,
Name: v501.UpgradeName,
Info: "some text here",
Height: 100,
}
Expand Down Expand Up @@ -148,7 +148,7 @@ func (suite *UpgradeTestSuite) TestUpgradeDexPause() {
suite.False(params.Paused)

upgrade := upgradetypes.Plan{
Name: v500.UpgradeName,
Name: v501.UpgradeName,
Info: "some text here",
Height: 100,
}
Expand Down

0 comments on commit 2b14c13

Please sign in to comment.