Skip to content

Commit 6e7560f

Browse files
committed
Bump bchd and neutrino deps
1 parent 5a2ec88 commit 6e7560f

File tree

3 files changed

+588
-12
lines changed

3 files changed

+588
-12
lines changed

boot/version.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ const (
2222

2323
// appPreRelease MUST only contain characters from semanticAlphabet
2424
// per the semantic versioning spec.
25-
appPreRelease = "rc2"
25+
appPreRelease = ""
2626
)
2727

2828
// appBuild is defined as a variable so it can be overridden during the build

go.mod

Lines changed: 33 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -6,37 +6,59 @@ require (
66
github.com/btcsuite/golangcrypto v0.0.0-20150304025918-53f62d9b43e8
77
github.com/btcsuite/websocket v0.0.0-20150119174127-31079b680792
88
github.com/davecgh/go-spew v1.1.1
9-
github.com/gcash/bchd v0.20.0-rc2
9+
github.com/gcash/bchd v0.20.0
1010
github.com/gcash/bchlog v0.0.0-20180913005452-b4f036f92fa6
11-
github.com/gcash/bchutil v0.0.0-20241220024231-3d67040d3361
12-
github.com/gcash/bchwallet/walletdb v0.0.0-20250104020820-db0d019f6991
13-
github.com/gcash/neutrino v0.0.0-20250104021222-12db43a426b6
11+
github.com/gcash/bchutil v0.0.0-20250115071209-216bd54f0d4d
12+
github.com/gcash/bchwallet/walletdb v0.0.0-20250104021928-5a2ec88af6cc
13+
github.com/gcash/neutrino v0.0.0-20250115071805-4cc8a854e45d
1414
github.com/golang/protobuf v1.5.4
1515
github.com/jarcoal/httpmock v1.0.8
1616
github.com/jessevdk/go-flags v1.6.1
1717
github.com/jrick/logrotate v1.1.2
1818
github.com/lightninglabs/gozmq v0.0.0-20191113021534-d20a764486bf
1919
github.com/miekg/dns v1.1.62
2020
github.com/tyler-smith/go-bip39 v1.1.0
21-
golang.org/x/crypto v0.31.0
22-
golang.org/x/net v0.33.0
23-
google.golang.org/grpc v1.69.2
21+
golang.org/x/crypto v0.32.0
22+
golang.org/x/net v0.34.0
23+
google.golang.org/grpc v1.69.4
2424
)
2525

2626
require (
2727
github.com/aead/siphash v1.0.1 // indirect
28+
github.com/beorn7/perks v1.0.1 // indirect
29+
github.com/bluele/gcache v0.0.2 // indirect
2830
github.com/btcsuite/go-socks v0.0.0-20170105172521-4720035b7bfd // indirect
31+
github.com/btcsuite/goleveldb v1.0.0 // indirect
32+
github.com/btcsuite/snappy-go v1.0.0 // indirect
33+
github.com/btcsuite/winsvc v1.0.0 // indirect
34+
github.com/cenkalti/backoff/v4 v4.3.0 // indirect
35+
github.com/cespare/xxhash/v2 v2.3.0 // indirect
2936
github.com/dchest/siphash v1.2.3 // indirect
37+
github.com/desertbit/timer v1.0.1 // indirect
38+
github.com/gorilla/mux v1.8.1 // indirect
39+
github.com/grpc-ecosystem/go-grpc-prometheus v1.2.0 // indirect
40+
github.com/grpc-ecosystem/grpc-gateway/v2 v2.25.1 // indirect
41+
github.com/improbable-eng/grpc-web v0.15.0 // indirect
3042
github.com/kkdai/bstream v1.0.0 // indirect
43+
github.com/klauspost/compress v1.17.11 // indirect
44+
github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect
45+
github.com/prometheus/client_golang v1.20.5 // indirect
46+
github.com/prometheus/client_model v0.6.1 // indirect
47+
github.com/prometheus/common v0.61.0 // indirect
48+
github.com/prometheus/procfs v0.15.1 // indirect
49+
github.com/rs/cors v1.11.1 // indirect
50+
github.com/simpleledgerinc/goslp v0.0.0-20210423125905-3c2e5f2ef33f // indirect
3151
github.com/zquestz/grab v0.0.0-20190224022517-abcee96e61b1 // indirect
3252
go.etcd.io/bbolt v1.3.11 // indirect
3353
golang.org/x/mod v0.22.0 // indirect
3454
golang.org/x/sync v0.10.0 // indirect
35-
golang.org/x/sys v0.28.0 // indirect
36-
golang.org/x/term v0.27.0 // indirect
55+
golang.org/x/sys v0.29.0 // indirect
56+
golang.org/x/term v0.28.0 // indirect
3757
golang.org/x/text v0.21.0 // indirect
3858
golang.org/x/tools v0.28.0 // indirect
39-
google.golang.org/genproto/googleapis/rpc v0.0.0-20250102185135-69823020774d // indirect
40-
google.golang.org/protobuf v1.36.1 // indirect
59+
google.golang.org/genproto/googleapis/api v0.0.0-20250106144421-5f5ef82da422 // indirect
60+
google.golang.org/genproto/googleapis/rpc v0.0.0-20250106144421-5f5ef82da422 // indirect
61+
google.golang.org/protobuf v1.36.2 // indirect
4162
lukechampine.com/uint128 v1.3.0 // indirect
63+
nhooyr.io/websocket v1.8.17 // indirect
4264
)

0 commit comments

Comments
 (0)