Skip to content

Commit

Permalink
prefix mainnet release v6_6_4
Browse files Browse the repository at this point in the history
  • Loading branch information
kkast committed May 2, 2024
1 parent b30e5ef commit d2d014d
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions app/app.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import (
"path/filepath"
"strings"

"github.com/notional-labs/composable/v6/app/upgrades/v6_6_3"
"github.com/notional-labs/composable/v6/app/upgrades/v6_6_4"

nodeservice "github.com/cosmos/cosmos-sdk/client/grpc/node"
authante "github.com/cosmos/cosmos-sdk/x/auth/ante"
Expand Down Expand Up @@ -148,7 +148,7 @@ var (
// https://github.com/CosmWasm/wasmd/blob/02a54d33ff2c064f3539ae12d75d027d9c665f05/x/wasm/internal/types/proposal.go#L28-L34
EnableSpecificProposals = ""

Upgrades = []upgrades.Upgrade{v6_6_3.Upgrade}
Upgrades = []upgrades.Upgrade{v6_6_4.Upgrade}
Forks = []upgrades.Fork{}
)

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package v6_6_3
package v6_6_4

import (
store "github.com/cosmos/cosmos-sdk/store/types"
Expand All @@ -7,7 +7,7 @@ import (

const (
// UpgradeName defines the on-chain upgrade name for the composable upgrade.
UpgradeName = "v6_6_3"
UpgradeName = "v6_6_4"
)

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

import (
"github.com/CosmWasm/wasmd/x/wasm"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package v6_6_3_test
package v6_6_4_test

import (
"encoding/json"
Expand All @@ -9,7 +9,7 @@ import (
ibchookskeeper "github.com/notional-labs/composable/v6/x/ibc-hooks/keeper"
ibctransfermiddlewaretypes "github.com/notional-labs/composable/v6/x/ibctransfermiddleware/types"

"github.com/notional-labs/composable/v6/app/upgrades/v6_6_3"
"github.com/notional-labs/composable/v6/app/upgrades/v6_6_4"

"cosmossdk.io/math"
sdk "github.com/cosmos/cosmos-sdk/types"
Expand Down Expand Up @@ -70,7 +70,7 @@ func (s *UpgradeTestSuite) TestForMigratingNewPrefix() {

/* == UPGRADE == */
upgradeHeight := int64(5)
s.ConfirmUpgradeSucceeded(v6_6_3.UpgradeName, upgradeHeight)
s.ConfirmUpgradeSucceeded(v6_6_4.UpgradeName, upgradeHeight)

/* == CHECK AFTER UPGRADE == */
checkUpgradeGovModule(s, acc1, proposal)
Expand Down

0 comments on commit d2d014d

Please sign in to comment.