forked from tendermint/tendermint
-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #28 from maticnetwork/mardizzone/POS-1609
dev: chg: solve vulns and set maxInboundPeer and maxOutBoundPeer to 100
- Loading branch information
Showing
8 changed files
with
375 additions
and
521 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,36 +1,72 @@ | ||
module github.com/tendermint/tendermint | ||
|
||
go 1.12 | ||
go 1.21 | ||
|
||
require ( | ||
github.com/VividCortex/gohistogram v1.0.0 // indirect | ||
github.com/Workiva/go-datastructures v1.0.50 | ||
github.com/btcsuite/btcd v0.0.0-20190115013929-ed77733ec07d | ||
github.com/btcsuite/btcd/chaincfg/chainhash v1.0.1 // indirect | ||
github.com/btcsuite/btcutil v0.0.0-20180706230648-ab6388e0c60a | ||
github.com/ethereum/go-ethereum v0.0.0-00010101000000-000000000000 | ||
github.com/Workiva/go-datastructures v1.0.53 | ||
github.com/btcsuite/btcd/btcec/v2 v2.3.2 | ||
github.com/btcsuite/btcutil v1.0.3-0.20201208143702-a53e38424cce | ||
github.com/ethereum/go-ethereum v1.10.26 | ||
github.com/fortytw2/leaktest v1.3.0 | ||
github.com/go-kit/kit v0.9.0 | ||
github.com/go-logfmt/logfmt v0.5.0 | ||
github.com/gogo/protobuf v1.3.1 | ||
github.com/golang/protobuf v1.5.2 | ||
github.com/gorilla/websocket v1.4.2 | ||
github.com/libp2p/go-buffer-pool v0.0.2 | ||
github.com/magiconair/properties v1.8.1 | ||
github.com/go-kit/kit v0.12.0 | ||
github.com/go-logfmt/logfmt v0.5.1 | ||
github.com/gogo/protobuf v1.3.2 | ||
github.com/golang/protobuf v1.5.3 | ||
github.com/gorilla/websocket v1.5.0 | ||
github.com/libp2p/go-buffer-pool v0.1.0 | ||
github.com/magiconair/properties v1.8.6 | ||
github.com/pkg/errors v0.9.1 | ||
github.com/prometheus/client_golang v1.0.0 | ||
github.com/rcrowley/go-metrics v0.0.0-20180503174638-e2704e165165 | ||
github.com/rs/cors v1.7.0 | ||
github.com/prometheus/client_golang v1.14.0 | ||
github.com/rcrowley/go-metrics v0.0.0-20201227073835-cf1acfcdf475 | ||
github.com/rs/cors v1.8.2 | ||
github.com/snikch/goodman v0.0.0-20171125024755-10e37e294daa | ||
github.com/spf13/cobra v0.0.3 | ||
github.com/spf13/viper v1.4.0 | ||
github.com/stretchr/testify v1.7.0 | ||
github.com/spf13/cobra v1.5.0 | ||
github.com/spf13/viper v1.13.0 | ||
github.com/stretchr/testify v1.8.3 | ||
github.com/tendermint/go-amino v0.16.0 | ||
github.com/tendermint/tm-db v0.6.7 | ||
golang.org/x/crypto v0.11.0 | ||
golang.org/x/net v0.12.0 | ||
google.golang.org/grpc v1.58.2 | ||
) | ||
|
||
require ( | ||
github.com/beorn7/perks v1.0.1 // indirect | ||
github.com/cespare/xxhash/v2 v2.2.0 // indirect | ||
github.com/davecgh/go-spew v1.1.1 // indirect | ||
github.com/decred/dcrd/dcrec/secp256k1/v4 v4.0.1 // indirect | ||
github.com/etcd-io/bbolt v1.3.3 // indirect | ||
github.com/fsnotify/fsnotify v1.6.0 // indirect | ||
github.com/go-kit/log v0.2.1 // indirect | ||
github.com/golang/snappy v0.0.5-0.20220116011046-fa5810519dcb // indirect | ||
github.com/hashicorp/hcl v1.0.0 // indirect | ||
github.com/holiman/uint256 v1.2.2-0.20230321075855-87b91420868c // indirect | ||
github.com/inconshreveable/mousetrap v1.0.0 // indirect | ||
github.com/jmhodges/levigo v1.0.0 // indirect | ||
github.com/matttproud/golang_protobuf_extensions v1.0.4 // indirect | ||
github.com/mitchellh/mapstructure v1.5.0 // indirect | ||
github.com/pelletier/go-toml v1.9.5 // indirect | ||
github.com/pelletier/go-toml/v2 v2.0.5 // indirect | ||
github.com/pmezard/go-difflib v1.0.0 // indirect | ||
github.com/prometheus/client_model v0.3.0 // indirect | ||
github.com/prometheus/common v0.39.0 // indirect | ||
github.com/prometheus/procfs v0.9.0 // indirect | ||
github.com/spf13/afero v1.8.2 // indirect | ||
github.com/spf13/cast v1.5.0 // indirect | ||
github.com/spf13/jwalterweatherman v1.1.0 // indirect | ||
github.com/spf13/pflag v1.0.5 // indirect | ||
github.com/stumble/gorocksdb v0.0.3 // indirect | ||
github.com/tendermint/go-amino v0.14.1 | ||
github.com/tendermint/tm-db v0.2.0 | ||
golang.org/x/crypto v0.0.0-20210322153248-0c34fe9e7dc2 | ||
golang.org/x/net v0.0.0-20210805182204-aaa1db679c0d | ||
google.golang.org/grpc v1.42.0 | ||
github.com/subosito/gotenv v1.4.1 // indirect | ||
github.com/syndtr/goleveldb v1.0.1-0.20210819022825-2ae1ddf74ef7 // indirect | ||
golang.org/x/sys v0.10.0 // indirect | ||
golang.org/x/text v0.11.0 // indirect | ||
google.golang.org/genproto/googleapis/rpc v0.0.0-20230711160842-782d3b101e98 // indirect | ||
google.golang.org/protobuf v1.31.0 // indirect | ||
gopkg.in/ini.v1 v1.67.0 // indirect | ||
gopkg.in/yaml.v2 v2.4.0 // indirect | ||
gopkg.in/yaml.v3 v3.0.1 // indirect | ||
) | ||
|
||
replace github.com/ethereum/go-ethereum => github.com/maticnetwork/bor v0.2.16 | ||
replace github.com/ethereum/go-ethereum => github.com/maticnetwork/bor v1.0.4 | ||
|
||
replace github.com/tendermint/tm-db => github.com/tendermint/tm-db v0.2.0 |
Oops, something went wrong.