Skip to content

Commit

Permalink
Prepare for v1.1.6 and update Market Module
Browse files Browse the repository at this point in the history
  • Loading branch information
Charles Dusek committed May 26, 2024
1 parent c722453 commit 05d925c
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions app/app.go
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ import (
markettypes "github.com/pendulum-labs/market/x/market/types"

"github.com/onomyprotocol/onex/app/upgrades"
v1_1_5 "github.com/onomyprotocol/onex/app/upgrades/v1.1.5"
v1_1_6 "github.com/onomyprotocol/onex/app/upgrades/v1.1.6"
)

const (
Expand All @@ -129,7 +129,7 @@ const (

var (
Upgrades = []upgrades.Upgrade{}
Forks = []upgrades.Fork{v1_1_5.Fork}
Forks = []upgrades.Fork{v1_1_6.Fork}

// 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 v1_1_5
package v1_1_6

import (
"github.com/onomyprotocol/onex/app/upgrades"
)

const (
// UpgradeName defines the on-chain upgrades name.
UpgradeName = "v1_1_5"
UpgradeName = "v1_1_6"
UpgradeHeight = 389310
)

Expand Down
4 changes: 2 additions & 2 deletions app/upgrades/v1.1.5/fork.go → app/upgrades/v1.1.6/fork.go
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// Package v1_1_5 is contains chain fork of the corresponding version.
package v1_1_5 //nolint:revive,stylecheck // app version
// Package v1_1_6 is contains chain fork of the corresponding version.
package v1_1_6 //nolint:revive,stylecheck // app version

import (
"github.com/onomyprotocol/onex/app/upgrades"
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ replace (
github.com/cosmos/cosmos-sdk => github.com/cosmos/cosmos-sdk v0.45.16-ics
github.com/gogo/protobuf => github.com/regen-network/protobuf v1.3.3-alpha.regen.1
github.com/keybase/go-keychain => github.com/99designs/go-keychain v0.0.0-20191008050251-8e49817e8af4
github.com/pendulum-labs/market => github.com/onomyprotocol/market v1.1.3-dev
github.com/pendulum-labs/market => github.com/onomyprotocol/market v1.1.4-dev
github.com/tendermint/tendermint => github.com/cometbft/cometbft v0.34.28
google.golang.org/grpc => google.golang.org/grpc v1.33.2
)
4 changes: 2 additions & 2 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -2204,8 +2204,8 @@ github.com/olekukonko/tablewriter v0.0.0-20170122224234-a0225b3f23b5/go.mod h1:v
github.com/olekukonko/tablewriter v0.0.1/go.mod h1:vsDQFd/mU46D+Z4whnwzcISnGGzXWMclvtLoiIKAKIo=
github.com/olekukonko/tablewriter v0.0.2/go.mod h1:rSAaSIOAGT9odnlyGlUfAJaoc5w2fSBUmeGDbRWPxyQ=
github.com/olekukonko/tablewriter v0.0.5/go.mod h1:hPp6KlRPjbx+hW8ykQs1w3UBbZlj6HuIJcUGPhkA7kY=
github.com/onomyprotocol/market v1.1.3-dev h1:t1auMPtqHiFumVjlpYibVMe4dI8LdgsCH0h5Ybo3YR8=
github.com/onomyprotocol/market v1.1.3-dev/go.mod h1:OFWUMLq8cfNRQnc6WqReQYq+hNYRqoc2RmMvECSxdwk=
github.com/onomyprotocol/market v1.1.4-dev h1:fA1O3NAatEBx/YU2++2LcdBNRs+aX9N50rY/bWxmXfU=
github.com/onomyprotocol/market v1.1.4-dev/go.mod h1:OFWUMLq8cfNRQnc6WqReQYq+hNYRqoc2RmMvECSxdwk=
github.com/onsi/ginkgo v0.0.0-20151202141238-7f8ab55aaf3b/go.mod h1:lLunBs/Ym6LB5Z9jYTR76FiuTmxDTDusOGeTQH+WWjE=
github.com/onsi/ginkgo v0.0.0-20170829012221-11459a886d9c/go.mod h1:lLunBs/Ym6LB5Z9jYTR76FiuTmxDTDusOGeTQH+WWjE=
github.com/onsi/ginkgo v1.6.0/go.mod h1:lLunBs/Ym6LB5Z9jYTR76FiuTmxDTDusOGeTQH+WWjE=
Expand Down

0 comments on commit 05d925c

Please sign in to comment.