Skip to content

Commit 36a6e7d

Browse files
Bump github.com/ethereum/go-ethereum from 1.10.19 to 1.12.1
Bumps [github.com/ethereum/go-ethereum](https://github.com/ethereum/go-ethereum) from 1.10.19 to 1.12.1. - [Release notes](https://github.com/ethereum/go-ethereum/releases) - [Commits](ethereum/go-ethereum@v1.10.19...v1.12.1) --- updated-dependencies: - dependency-name: github.com/ethereum/go-ethereum dependency-type: direct:production ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent eec2e6a commit 36a6e7d

File tree

2 files changed

+110
-99
lines changed

2 files changed

+110
-99
lines changed

go.mod

+25-25
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,8 @@ require (
2222
github.com/btcsuite/btcd/v2 v2.0.0-00010101000000-000000000000
2323
github.com/btcsuite/btcutil v1.0.3-0.20201208143702-a53e38424cce
2424
github.com/checksum0/go-electrum v0.0.0-20220912200153-b862ac442cf9
25-
github.com/ethereum/go-ethereum v1.10.19
25+
github.com/ethereum/go-ethereum v1.12.1
2626
github.com/go-test/deep v1.0.8
27-
github.com/golang/protobuf v1.5.2
2827
github.com/google/gofuzz v1.1.1-0.20200604201612-c04b05f3adfa
2928
github.com/hashicorp/go-multierror v1.1.1
3029
github.com/ipfs/go-datastore v0.5.1
@@ -44,10 +43,10 @@ require (
4443
github.com/spf13/pflag v1.0.5
4544
github.com/spf13/viper v1.12.0
4645
go.uber.org/zap v1.21.0
47-
golang.org/x/crypto v0.0.0-20220525230936-793ad666bf5e
48-
golang.org/x/exp v0.0.0-20220426173459-3bcf042a4bf5
49-
golang.org/x/sync v0.0.0-20220601150217-0de741cfad7f
50-
golang.org/x/term v0.0.0-20210927222741-03fcf44c2211
46+
golang.org/x/crypto v0.9.0
47+
golang.org/x/exp v0.0.0-20230515195305-f3d0a9c9a5cc
48+
golang.org/x/sync v0.3.0
49+
golang.org/x/term v0.8.0
5150
google.golang.org/protobuf v1.30.0
5251
google.golang.org/protobuf/dev v0.0.0-00010101000000-000000000000
5352
)
@@ -60,30 +59,32 @@ require (
6059
github.com/beorn7/perks v1.0.1 // indirect
6160
github.com/btcsuite/btcd/btcutil v1.1.1 // indirect
6261
github.com/btcsuite/btclog v0.0.0-20170628155309-84c8d2346e9f // indirect
63-
github.com/cespare/xxhash/v2 v2.1.2 // indirect
62+
github.com/cespare/xxhash/v2 v2.2.0 // indirect
6463
github.com/cheekybits/genny v1.0.0 // indirect
6564
github.com/containerd/cgroups v0.0.0-20201119153540-4cbc285b3327 // indirect
6665
github.com/coreos/go-systemd/v22 v22.3.2 // indirect
6766
github.com/davidlazar/go-crypto v0.0.0-20200604182044-b73af7476f6c // indirect
68-
github.com/deckarep/golang-set v1.8.0 // indirect
67+
github.com/deckarep/golang-set/v2 v2.1.0 // indirect
6968
github.com/decred/dcrd/dcrec/edwards/v2 v2.0.0 // indirect
7069
github.com/decred/dcrd/dcrec/secp256k1/v4 v4.0.1 // indirect
7170
github.com/docker/go-units v0.4.0 // indirect
7271
github.com/elastic/gosigar v0.12.0 // indirect
7372
github.com/flynn/noise v1.0.0 // indirect
7473
github.com/francoispqt/gojay v1.2.13 // indirect
75-
github.com/fsnotify/fsnotify v1.5.4 // indirect
74+
github.com/fsnotify/fsnotify v1.6.0 // indirect
7675
github.com/go-ole/go-ole v1.2.1 // indirect
77-
github.com/go-stack/stack v1.8.0 // indirect
76+
github.com/go-stack/stack v1.8.1 // indirect
7877
github.com/go-task/slim-sprig v0.0.0-20210107165309-348f09dbbbc0 // indirect
7978
github.com/godbus/dbus/v5 v5.0.4 // indirect
8079
github.com/gogo/protobuf v1.3.2 // indirect
80+
github.com/golang/protobuf v1.5.2 // indirect
8181
github.com/google/gopacket v1.1.19 // indirect
8282
github.com/google/uuid v1.3.0 // indirect
8383
github.com/gorilla/websocket v1.5.0 // indirect
8484
github.com/hashicorp/errwrap v1.1.0 // indirect
8585
github.com/hashicorp/golang-lru v0.5.5-0.20210104140557-80c98217689d // indirect
8686
github.com/hashicorp/hcl v1.0.0 // indirect
87+
github.com/holiman/uint256 v1.2.3 // indirect
8788
github.com/huin/goupnp v1.0.3 // indirect
8889
github.com/inconshreveable/mousetrap v1.0.0 // indirect
8990
github.com/ipfs/bbloom v0.0.4 // indirect
@@ -107,7 +108,7 @@ require (
107108
github.com/jackpal/go-nat-pmp v1.0.2 // indirect
108109
github.com/jbenet/go-temp-err-catcher v0.1.0 // indirect
109110
github.com/kkdai/bstream v0.0.0-20161212061736-f391b8402d23 // indirect
110-
github.com/klauspost/compress v1.15.1 // indirect
111+
github.com/klauspost/compress v1.15.15 // indirect
111112
github.com/klauspost/cpuid/v2 v2.0.12 // indirect
112113
github.com/koron/go-ssdp v0.0.2 // indirect
113114
github.com/libp2p/go-buffer-pool v0.0.2 // indirect
@@ -132,8 +133,8 @@ require (
132133
github.com/marten-seemann/qtls-go1-17 v0.1.1 // indirect
133134
github.com/marten-seemann/qtls-go1-18 v0.1.1 // indirect
134135
github.com/marten-seemann/tcp v0.0.0-20210406111302-dfbc87cc63fd // indirect
135-
github.com/mattn/go-isatty v0.0.14 // indirect
136-
github.com/matttproud/golang_protobuf_extensions v1.0.1 // indirect
136+
github.com/mattn/go-isatty v0.0.16 // indirect
137+
github.com/matttproud/golang_protobuf_extensions v1.0.4 // indirect
137138
github.com/miekg/dns v1.1.43 // indirect
138139
github.com/mikioh/tcpinfo v0.0.0-20190314235526-30a79bb1804b // indirect
139140
github.com/mikioh/tcpopt v0.0.0-20190314235656-172688c1accc // indirect
@@ -160,13 +161,12 @@ require (
160161
github.com/pelletier/go-toml/v2 v2.0.1 // indirect
161162
github.com/pkg/errors v0.9.1 // indirect
162163
github.com/polydawn/refmt v0.0.0-20201211092308-30ac6d18308e // indirect
163-
github.com/prometheus/client_golang v1.12.1 // indirect
164-
github.com/prometheus/client_model v0.2.0 // indirect
165-
github.com/prometheus/common v0.32.1 // indirect
166-
github.com/prometheus/procfs v0.7.3 // indirect
164+
github.com/prometheus/client_golang v1.14.0 // indirect
165+
github.com/prometheus/client_model v0.3.0 // indirect
166+
github.com/prometheus/common v0.39.0 // indirect
167+
github.com/prometheus/procfs v0.9.0 // indirect
167168
github.com/raulk/clock v1.1.0 // indirect
168169
github.com/raulk/go-watchdog v1.2.0 // indirect
169-
github.com/rjeczalik/notify v0.9.2 // indirect
170170
github.com/shirou/gopsutil v3.21.4-0.20210419000835-c7a38de76ee5+incompatible // indirect
171171
github.com/spacemonkeygo/spacelog v0.0.0-20180420211403-2296661a0572 // indirect
172172
github.com/spaolacci/murmur3 v1.1.0 // indirect
@@ -183,17 +183,17 @@ require (
183183
go.opencensus.io v0.23.0 // indirect
184184
go.uber.org/atomic v1.9.0 // indirect
185185
go.uber.org/multierr v1.8.0 // indirect
186-
golang.org/x/mod v0.6.0-dev.0.20220419223038-86c51ed26bb4 // indirect
187-
golang.org/x/net v0.0.0-20220520000938-2e3eb7b945c2 // indirect
188-
golang.org/x/sys v0.0.0-20220715151400-c0bba94af5f8 // indirect
189-
golang.org/x/text v0.3.7 // indirect
190-
golang.org/x/time v0.0.0-20210220033141-f8bda1e9f3ba // indirect
191-
golang.org/x/tools v0.1.11 // indirect
186+
golang.org/x/mod v0.10.0 // indirect
187+
golang.org/x/net v0.10.0 // indirect
188+
golang.org/x/sys v0.9.0 // indirect
189+
golang.org/x/text v0.9.0 // indirect
190+
golang.org/x/time v0.3.0 // indirect
191+
golang.org/x/tools v0.9.1 // indirect
192192
golang.org/x/xerrors v0.0.0-20220517211312-f3a8303e98df // indirect
193193
gopkg.in/ini.v1 v1.66.4 // indirect
194194
gopkg.in/natefinch/npipe.v2 v2.0.0-20160621034901-c1b8fa8bdcce // indirect
195195
gopkg.in/tomb.v1 v1.0.0-20141024135613-dd632973f1e7 // indirect
196196
gopkg.in/yaml.v2 v2.4.0 // indirect
197-
gopkg.in/yaml.v3 v3.0.0 // indirect
197+
gopkg.in/yaml.v3 v3.0.1 // indirect
198198
lukechampine.com/blake3 v1.1.7 // indirect
199199
)

0 commit comments

Comments
 (0)