Skip to content

Commit

Permalink
rename uprgade
Browse files Browse the repository at this point in the history
  • Loading branch information
kkast committed Apr 11, 2024
1 parent a806d66 commit 2fb2d3e
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 @@ -36,7 +36,7 @@ import (
"github.com/cosmos/cosmos-sdk/x/bank"

"github.com/notional-labs/composable/v6/app/keepers"
"github.com/notional-labs/composable/v6/app/upgrades/v6_5_3"
"github.com/notional-labs/composable/v6/app/upgrades/v6_5_4"

// bankkeeper "github.com/cosmos/cosmos-sdk/x/bank/keeper"

Expand Down Expand Up @@ -147,7 +147,7 @@ var (
// https://github.com/CosmWasm/wasmd/blob/02a54d33ff2c064f3539ae12d75d027d9c665f05/x/wasm/internal/types/proposal.go#L28-L34
EnableSpecificProposals = ""

Upgrades = []upgrades.Upgrade{v6_5_3.Upgrade}
Upgrades = []upgrades.Upgrade{v6_5_4.Upgrade}
Forks = []upgrades.Fork{}
)

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package v6_5_3
package v6_5_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_5_3"
UpgradeName = "v6_5_4"
)

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

import (
sdk "github.com/cosmos/cosmos-sdk/types"
Expand Down

0 comments on commit 2fb2d3e

Please sign in to comment.