Skip to content

Commit 05d925c

Browse files
author
Charles Dusek
committed
Prepare for v1.1.6 and update Market Module
1 parent c722453 commit 05d925c

File tree

5 files changed

+9
-9
lines changed

5 files changed

+9
-9
lines changed

app/app.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ import (
119119
markettypes "github.com/pendulum-labs/market/x/market/types"
120120

121121
"github.com/onomyprotocol/onex/app/upgrades"
122-
v1_1_5 "github.com/onomyprotocol/onex/app/upgrades/v1.1.5"
122+
v1_1_6 "github.com/onomyprotocol/onex/app/upgrades/v1.1.6"
123123
)
124124

125125
const (
@@ -129,7 +129,7 @@ const (
129129

130130
var (
131131
Upgrades = []upgrades.Upgrade{}
132-
Forks = []upgrades.Fork{v1_1_5.Fork}
132+
Forks = []upgrades.Fork{v1_1_6.Fork}
133133

134134
// DefaultNodeHome default home directories for the application daemon
135135
DefaultNodeHome string

app/upgrades/v1.1.5/constants.go renamed to app/upgrades/v1.1.6/constants.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
package v1_1_5
1+
package v1_1_6
22

33
import (
44
"github.com/onomyprotocol/onex/app/upgrades"
55
)
66

77
const (
88
// UpgradeName defines the on-chain upgrades name.
9-
UpgradeName = "v1_1_5"
9+
UpgradeName = "v1_1_6"
1010
UpgradeHeight = 389310
1111
)
1212

app/upgrades/v1.1.5/fork.go renamed to app/upgrades/v1.1.6/fork.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
// Package v1_1_5 is contains chain fork of the corresponding version.
2-
package v1_1_5 //nolint:revive,stylecheck // app version
1+
// Package v1_1_6 is contains chain fork of the corresponding version.
2+
package v1_1_6 //nolint:revive,stylecheck // app version
33

44
import (
55
"github.com/onomyprotocol/onex/app/upgrades"

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,7 @@ replace (
155155
github.com/cosmos/cosmos-sdk => github.com/cosmos/cosmos-sdk v0.45.16-ics
156156
github.com/gogo/protobuf => github.com/regen-network/protobuf v1.3.3-alpha.regen.1
157157
github.com/keybase/go-keychain => github.com/99designs/go-keychain v0.0.0-20191008050251-8e49817e8af4
158-
github.com/pendulum-labs/market => github.com/onomyprotocol/market v1.1.3-dev
158+
github.com/pendulum-labs/market => github.com/onomyprotocol/market v1.1.4-dev
159159
github.com/tendermint/tendermint => github.com/cometbft/cometbft v0.34.28
160160
google.golang.org/grpc => google.golang.org/grpc v1.33.2
161161
)

go.sum

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2204,8 +2204,8 @@ github.com/olekukonko/tablewriter v0.0.0-20170122224234-a0225b3f23b5/go.mod h1:v
22042204
github.com/olekukonko/tablewriter v0.0.1/go.mod h1:vsDQFd/mU46D+Z4whnwzcISnGGzXWMclvtLoiIKAKIo=
22052205
github.com/olekukonko/tablewriter v0.0.2/go.mod h1:rSAaSIOAGT9odnlyGlUfAJaoc5w2fSBUmeGDbRWPxyQ=
22062206
github.com/olekukonko/tablewriter v0.0.5/go.mod h1:hPp6KlRPjbx+hW8ykQs1w3UBbZlj6HuIJcUGPhkA7kY=
2207-
github.com/onomyprotocol/market v1.1.3-dev h1:t1auMPtqHiFumVjlpYibVMe4dI8LdgsCH0h5Ybo3YR8=
2208-
github.com/onomyprotocol/market v1.1.3-dev/go.mod h1:OFWUMLq8cfNRQnc6WqReQYq+hNYRqoc2RmMvECSxdwk=
2207+
github.com/onomyprotocol/market v1.1.4-dev h1:fA1O3NAatEBx/YU2++2LcdBNRs+aX9N50rY/bWxmXfU=
2208+
github.com/onomyprotocol/market v1.1.4-dev/go.mod h1:OFWUMLq8cfNRQnc6WqReQYq+hNYRqoc2RmMvECSxdwk=
22092209
github.com/onsi/ginkgo v0.0.0-20151202141238-7f8ab55aaf3b/go.mod h1:lLunBs/Ym6LB5Z9jYTR76FiuTmxDTDusOGeTQH+WWjE=
22102210
github.com/onsi/ginkgo v0.0.0-20170829012221-11459a886d9c/go.mod h1:lLunBs/Ym6LB5Z9jYTR76FiuTmxDTDusOGeTQH+WWjE=
22112211
github.com/onsi/ginkgo v1.6.0/go.mod h1:lLunBs/Ym6LB5Z9jYTR76FiuTmxDTDusOGeTQH+WWjE=

0 commit comments

Comments
 (0)