Skip to content

Commit

Permalink
Bump tendermint patch and update indirect btcsuite dependency for sdk…
Browse files Browse the repository at this point in the history
… compat (#2150)

(cherry picked from commit 0ce11be)

# Conflicts:
#	go.mod
#	go.sum
  • Loading branch information
glnro authored and mergify[bot] committed Feb 6, 2023
1 parent 6e4aae4 commit 00d2ecf
Show file tree
Hide file tree
Showing 2 changed files with 384 additions and 5 deletions.
31 changes: 31 additions & 0 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,12 @@ require (
github.com/bombsimon/wsl/v3 v3.3.0 // indirect
github.com/breml/bidichk v0.2.3 // indirect
github.com/breml/errchkjson v0.3.0 // indirect
<<<<<<< HEAD
github.com/btcsuite/btcd v0.22.2 // indirect
=======
github.com/btcsuite/btcd v0.23.0 // indirect
github.com/btcsuite/btcd/btcec/v2 v2.2.1 // indirect
>>>>>>> 0ce11be (Bump tendermint patch and update indirect btcsuite dependency for sdk compat (#2150))
github.com/butuzov/ireturn v0.1.1 // indirect
github.com/cenkalti/backoff/v4 v4.1.3 // indirect
github.com/cespare/xxhash v1.1.0 // indirect
Expand All @@ -80,6 +85,7 @@ require (
github.com/daixiang0/gci v0.8.1 // indirect
github.com/danieljoos/wincred v1.1.2 // indirect
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/decred/dcrd/dcrec/secp256k1/v4 v4.0.1 // indirect
github.com/denis-tingaikin/go-header v0.4.3 // indirect
github.com/desertbit/timer v0.0.0-20180107155436-c41aec40b27f // indirect
github.com/dgraph-io/badger/v2 v2.2007.4 // indirect
Expand Down Expand Up @@ -258,6 +264,7 @@ require (
go.uber.org/atomic v1.10.0 // indirect
go.uber.org/multierr v1.8.0 // indirect
go.uber.org/zap v1.23.0 // indirect
<<<<<<< HEAD
golang.org/x/crypto v0.2.0 // indirect
golang.org/x/exp v0.0.0-20220722155223-a9213eeb770e // indirect
golang.org/x/exp/typeparams v0.0.0-20220827204233-334a2380cb91 // indirect
Expand All @@ -268,6 +275,18 @@ require (
golang.org/x/term v0.2.0 // indirect
golang.org/x/text v0.4.0 // indirect
golang.org/x/tools v0.2.0 // indirect
=======
golang.org/x/crypto v0.4.0 // indirect
golang.org/x/exp v0.0.0-20220722155223-a9213eeb770e // indirect
golang.org/x/exp/typeparams v0.0.0-20220827204233-334a2380cb91 // indirect
golang.org/x/mod v0.7.0 // indirect
golang.org/x/net v0.4.0 // indirect
golang.org/x/sync v0.1.0 // indirect
golang.org/x/sys v0.3.0 // indirect
golang.org/x/term v0.3.0 // indirect
golang.org/x/text v0.5.0 // indirect
golang.org/x/tools v0.4.0 // indirect
>>>>>>> 0ce11be (Bump tendermint patch and update indirect btcsuite dependency for sdk compat (#2150))
google.golang.org/protobuf v1.28.2-0.20220831092852-f930b1dc76e8 // indirect
gopkg.in/ini.v1 v1.67.0 // indirect
gopkg.in/yaml.v2 v2.4.0 // indirect
Expand All @@ -284,9 +303,17 @@ replace (
// Use cosmos keyring
github.com/99designs/keyring => github.com/cosmos/keyring v1.2.0

<<<<<<< HEAD
// enforce same SDK and IBC on all dependencies
github.com/cosmos/cosmos-sdk => github.com/cosmos/cosmos-sdk v0.45.12
github.com/cosmos/ibc-go/v3 => github.com/cosmos/ibc-go/v3 v3.4.0
=======
// TODO: Simapp dependency, review removing when updating to SDK with backported update https://github.com/cosmos/cosmos-sdk/issues/13423
github.com/btcsuite/btcd => github.com/btcsuite/btcd v0.22.1 // indirect

// dragonberry
github.com/confio/ics23/go => github.com/cosmos/cosmos-sdk/ics23/go v0.8.0
>>>>>>> 0ce11be (Bump tendermint patch and update indirect btcsuite dependency for sdk compat (#2150))

// Revert to Conifo's ICS23 implementation, with a version bump, post Dragonberry
github.com/confio/ics23/go => github.com/confio/ics23/go v0.9.0
Expand All @@ -298,9 +325,13 @@ replace (

// use cosmos style protobufs
github.com/gogo/protobuf => github.com/regen-network/protobuf v1.3.3-alpha.regen.1
<<<<<<< HEAD

// Use Informal Systems fork of Tendermint
github.com/tendermint/tendermint => github.com/informalsystems/tendermint v0.34.24
=======
github.com/tendermint/tendermint => github.com/informalsystems/tendermint v0.34.25
>>>>>>> 0ce11be (Bump tendermint patch and update indirect btcsuite dependency for sdk compat (#2150))

// latest grpc doesn't work with with our modified proto compiler, so we need to enforce
// the following version across all dependencies.
Expand Down

0 comments on commit 00d2ecf

Please sign in to comment.