Skip to content

Commit 66974d0

Browse files
committed
mod+README+lnd_services: bump to lnd v0.14.3-beta
1 parent 6a395e2 commit 66974d0

File tree

4 files changed

+120
-17
lines changed

4 files changed

+120
-17
lines changed

README.md

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -24,11 +24,10 @@ different versions. There are two "levels" of depending on a version of
2424

2525
The current compatibility matrix reads as follows:
2626

27-
| `lndclient` git tag | `lnd` version in `go.mod` | minimum required `lnd` version |
28-
| ---------------------------- | ------------------------- | ------------------------------ |
29-
| [`v0.14.2-2`](https://github.com/lightninglabs/lndclient/blob/v0.14.2-2) | `v0.14.2-beta` | `v0.14.2-beta` |
30-
| [`v0.13.0-10`](https://github.com/lightninglabs/lndclient/blob/v0.13.0-10) | `lnd @ d9f0f07142ea` | `v0.13.0-beta` |
31-
| `master` / [`v0.12.0-13`](https://github.com/lightninglabs/lndclient/blob/v0.12.0-13) | `v0.12.0-beta` | `v0.12.0-beta` |
27+
| `lndclient` git tag | `lnd` version in `go.mod` | minimum required `lnd` version |
28+
|-------------------------------------------------------------------------------------|---------------------------|--------------------------------|
29+
| `master` / [`v0.14.3-0`](https://github.com/lightninglabs/lndclient/blob/v0.14.3-0) | `v0.14.3-beta` | `v0.14.3-beta` |
30+
| [`v0.13.0-11`](https://github.com/lightninglabs/lndclient/blob/v0.13.0-11) | `lnd @ d9f0f07142ea` | `v0.13.0-beta` |
3231

3332

3433
By default, `lndclient` requires (and enforces) the following RPC subservers to

go.mod

Lines changed: 113 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ require (
55
github.com/btcsuite/btclog v0.0.0-20170628155309-84c8d2346e9f
66
github.com/btcsuite/btcutil v1.0.3-0.20210527170813-e2ba6805a890
77
github.com/btcsuite/btcwallet/wtxmgr v1.3.1-0.20210822222949-9b5a201c344c
8-
github.com/lightningnetwork/lnd v0.14.2-beta
8+
github.com/lightningnetwork/lnd v0.14.3-beta
99
github.com/lightningnetwork/lnd/kvdb v1.3.0
1010
github.com/stretchr/testify v1.7.0
1111
go.etcd.io/bbolt v1.3.6
@@ -14,4 +14,115 @@ require (
1414
gopkg.in/macaroon.v2 v2.1.0
1515
)
1616

17-
go 1.15
17+
require (
18+
github.com/aead/chacha20 v0.0.0-20180709150244-8b13a72661da // indirect
19+
github.com/aead/siphash v1.0.1 // indirect
20+
github.com/andybalholm/brotli v1.0.3 // indirect
21+
github.com/beorn7/perks v1.0.1 // indirect
22+
github.com/btcsuite/btcutil/psbt v1.0.3-0.20210527170813-e2ba6805a890 // indirect
23+
github.com/btcsuite/btcwallet v0.13.1-0.20211201210108-79de92f527dc // indirect
24+
github.com/btcsuite/btcwallet/wallet/txauthor v1.1.0 // indirect
25+
github.com/btcsuite/btcwallet/wallet/txrules v1.1.0 // indirect
26+
github.com/btcsuite/btcwallet/wallet/txsizes v1.1.0 // indirect
27+
github.com/btcsuite/btcwallet/walletdb v1.3.6-0.20210803004036-eebed51155ec // indirect
28+
github.com/btcsuite/go-socks v0.0.0-20170105172521-4720035b7bfd // indirect
29+
github.com/btcsuite/websocket v0.0.0-20150119174127-31079b680792 // indirect
30+
github.com/cespare/xxhash/v2 v2.1.1 // indirect
31+
github.com/coreos/go-semver v0.3.0 // indirect
32+
github.com/coreos/go-systemd/v22 v22.3.2 // indirect
33+
github.com/davecgh/go-spew v1.1.1 // indirect
34+
github.com/decred/dcrd/lru v1.0.0 // indirect
35+
github.com/dsnet/compress v0.0.1 // indirect
36+
github.com/dustin/go-humanize v1.0.0 // indirect
37+
github.com/fergusstrange/embedded-postgres v1.10.0 // indirect
38+
github.com/form3tech-oss/jwt-go v3.2.3+incompatible // indirect
39+
github.com/go-errors/errors v1.0.1 // indirect
40+
github.com/gogo/protobuf v1.3.2 // indirect
41+
github.com/golang/protobuf v1.5.2 // indirect
42+
github.com/golang/snappy v0.0.4 // indirect
43+
github.com/google/btree v1.0.1 // indirect
44+
github.com/gorilla/websocket v1.4.2 // indirect
45+
github.com/grpc-ecosystem/go-grpc-middleware v1.3.0 // indirect
46+
github.com/grpc-ecosystem/go-grpc-prometheus v1.2.0 // indirect
47+
github.com/grpc-ecosystem/grpc-gateway v1.16.0 // indirect
48+
github.com/grpc-ecosystem/grpc-gateway/v2 v2.5.0 // indirect
49+
github.com/jackc/chunkreader/v2 v2.0.1 // indirect
50+
github.com/jackc/pgconn v1.10.0 // indirect
51+
github.com/jackc/pgio v1.0.0 // indirect
52+
github.com/jackc/pgpassfile v1.0.0 // indirect
53+
github.com/jackc/pgproto3/v2 v2.1.1 // indirect
54+
github.com/jackc/pgservicefile v0.0.0-20200714003250-2b9c44734f2b // indirect
55+
github.com/jackc/pgtype v1.8.1 // indirect
56+
github.com/jackc/pgx/v4 v4.13.0 // indirect
57+
github.com/jonboulle/clockwork v0.2.2 // indirect
58+
github.com/jrick/logrotate v1.0.0 // indirect
59+
github.com/json-iterator/go v1.1.11 // indirect
60+
github.com/juju/loggo v0.0.0-20190526231331-6e530bcce5d8 // indirect
61+
github.com/kkdai/bstream v1.0.0 // indirect
62+
github.com/klauspost/compress v1.13.6 // indirect
63+
github.com/klauspost/pgzip v1.2.5 // indirect
64+
github.com/lib/pq v1.10.3 // indirect
65+
github.com/lightninglabs/gozmq v0.0.0-20191113021534-d20a764486bf // indirect
66+
github.com/lightninglabs/neutrino v0.13.0 // indirect
67+
github.com/lightningnetwork/lightning-onion v1.0.2-0.20210520211913-522b799e65b1 // indirect
68+
github.com/lightningnetwork/lnd/clock v1.1.0 // indirect
69+
github.com/lightningnetwork/lnd/healthcheck v1.2.0 // indirect
70+
github.com/lightningnetwork/lnd/queue v1.1.0 // indirect
71+
github.com/lightningnetwork/lnd/ticker v1.1.0 // indirect
72+
github.com/ltcsuite/ltcd v0.0.0-20190101042124-f37f8bf35796 // indirect
73+
github.com/matttproud/golang_protobuf_extensions v1.0.1 // indirect
74+
github.com/mholt/archiver/v3 v3.5.0 // indirect
75+
github.com/miekg/dns v1.1.43 // indirect
76+
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
77+
github.com/modern-go/reflect2 v1.0.1 // indirect
78+
github.com/nwaples/rardecode v1.1.2 // indirect
79+
github.com/pierrec/lz4/v4 v4.1.8 // indirect
80+
github.com/pmezard/go-difflib v1.0.0 // indirect
81+
github.com/prometheus/client_golang v1.11.0 // indirect
82+
github.com/prometheus/client_model v0.2.0 // indirect
83+
github.com/prometheus/common v0.26.0 // indirect
84+
github.com/prometheus/procfs v0.6.0 // indirect
85+
github.com/rogpeppe/fastuuid v1.2.0 // indirect
86+
github.com/sirupsen/logrus v1.7.0 // indirect
87+
github.com/soheilhy/cmux v0.1.5 // indirect
88+
github.com/spf13/pflag v1.0.5 // indirect
89+
github.com/tmc/grpc-websocket-proxy v0.0.0-20201229170055-e5319fda7802 // indirect
90+
github.com/ulikunitz/xz v0.5.10 // indirect
91+
github.com/xi2/xz v0.0.0-20171230120015-48954b6210f8 // indirect
92+
github.com/xiang90/probing v0.0.0-20190116061207-43a291ad63a2 // indirect
93+
go.etcd.io/etcd/api/v3 v3.5.0 // indirect
94+
go.etcd.io/etcd/client/pkg/v3 v3.5.0 // indirect
95+
go.etcd.io/etcd/client/v2 v2.305.0 // indirect
96+
go.etcd.io/etcd/client/v3 v3.5.0 // indirect
97+
go.etcd.io/etcd/pkg/v3 v3.5.0 // indirect
98+
go.etcd.io/etcd/raft/v3 v3.5.0 // indirect
99+
go.etcd.io/etcd/server/v3 v3.5.0 // indirect
100+
go.opentelemetry.io/contrib v0.20.0 // indirect
101+
go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.20.0 // indirect
102+
go.opentelemetry.io/otel v0.20.0 // indirect
103+
go.opentelemetry.io/otel/exporters/otlp v0.20.0 // indirect
104+
go.opentelemetry.io/otel/metric v0.20.0 // indirect
105+
go.opentelemetry.io/otel/sdk v0.20.0 // indirect
106+
go.opentelemetry.io/otel/sdk/export/metric v0.20.0 // indirect
107+
go.opentelemetry.io/otel/sdk/metric v0.20.0 // indirect
108+
go.opentelemetry.io/otel/trace v0.20.0 // indirect
109+
go.opentelemetry.io/proto/otlp v0.7.0 // indirect
110+
go.uber.org/atomic v1.7.0 // indirect
111+
go.uber.org/multierr v1.6.0 // indirect
112+
go.uber.org/zap v1.17.0 // indirect
113+
golang.org/x/crypto v0.0.0-20210921155107-089bfa567519 // indirect
114+
golang.org/x/net v0.0.0-20210913180222-943fd674d43e // indirect
115+
golang.org/x/sys v0.0.0-20210915083310-ed5796bab164 // indirect
116+
golang.org/x/term v0.0.0-20201126162022-7de9c90e9dd1 // indirect
117+
golang.org/x/text v0.3.6 // indirect
118+
golang.org/x/time v0.0.0-20210220033141-f8bda1e9f3ba // indirect
119+
google.golang.org/genproto v0.0.0-20210617175327-b9e0b3197ced // indirect
120+
google.golang.org/protobuf v1.26.0 // indirect
121+
gopkg.in/errgo.v1 v1.0.1 // indirect
122+
gopkg.in/natefinch/lumberjack.v2 v2.0.0 // indirect
123+
gopkg.in/yaml.v2 v2.4.0 // indirect
124+
gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b // indirect
125+
sigs.k8s.io/yaml v1.2.0 // indirect
126+
)
127+
128+
go 1.17

go.sum

Lines changed: 2 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -191,7 +191,6 @@ github.com/frankban/quicktest v1.0.0/go.mod h1:R98jIehRai+d1/3Hv2//jOVCTJhW1VBav
191191
github.com/frankban/quicktest v1.2.2 h1:xfmOhhoH5fGPgbEAlhLpJH9p0z/0Qizio9osmvn9IUY=
192192
github.com/frankban/quicktest v1.2.2/go.mod h1:Qh/WofXFeiAFII1aEBu529AtJo6Zg2VHscnEsbBnJ20=
193193
github.com/fsnotify/fsnotify v1.4.7/go.mod h1:jwhsz4b93w/PPRr/qN1Yymfu8t87LnFCMoQvtojpjFo=
194-
github.com/fsnotify/fsnotify v1.4.9 h1:hsms1Qyu0jgnwNXIxa+/V/PDsU6CfLf6CNO8H7IWoS4=
195194
github.com/fsnotify/fsnotify v1.4.9/go.mod h1:znqG4EE+3YCdAaPaxE2ZRY/06pZUdp0tY4IgpuI1SZQ=
196195
github.com/getsentry/raven-go v0.2.0 h1:no+xWJRb5ZI7eE8TWgIq1jLulQiIoLG0IfYxv5JYMGs=
197196
github.com/getsentry/raven-go v0.2.0/go.mod h1:KungGk8q33+aIAZUIVWZDr2OfAEBsO49PX4NzFV5kcQ=
@@ -358,7 +357,6 @@ github.com/hashicorp/logutils v1.0.0/go.mod h1:QIAnNjmIWmVIIkWDTG1z5v++HQmx9WQRO
358357
github.com/hashicorp/mdns v1.0.0/go.mod h1:tL+uN++7HEJ6SQLQ2/p+z2pH24WQKWjBPkE0mNTz8vQ=
359358
github.com/hashicorp/memberlist v0.1.3/go.mod h1:ajVTdAv/9Im8oMAAj5G31PhhMCZJV2pPBoIllUwCN7I=
360359
github.com/hashicorp/serf v0.8.2/go.mod h1:6hOLApaqBFA1NXqRQAsxw9QxuDEvNxSQRwA/JwenrHc=
361-
github.com/hpcloud/tail v1.0.0 h1:nfCOvKYfkgYP8hkirhJocXT2+zOD8yUNjXaWfTlyFKI=
362360
github.com/hpcloud/tail v1.0.0/go.mod h1:ab1qPbhIpdTxEkNHXyeSf5vhxWSCs/tWer42PpOxQnU=
363361
github.com/ianlancetaylor/demangle v0.0.0-20181102032728-5e5cf60278f6/go.mod h1:aSSvb/t6k1mPoxDqO4vJh6VOCGPwU4O0C2/Eqndh1Sc=
364362
github.com/inconshreveable/mousetrap v1.0.0/go.mod h1:PxqpIevigyE2G7u3NXJIT2ANytuPF1OarO4DADm73n8=
@@ -489,8 +487,8 @@ github.com/lightninglabs/neutrino v0.13.0/go.mod h1:GlKninWpRBbL7b8G0oQ36/8downf
489487
github.com/lightninglabs/protobuf-hex-display v1.4.3-hex-display/go.mod h1:2oKOBU042GKFHrdbgGiKax4xVrFiZu51lhacUZQ9MnE=
490488
github.com/lightningnetwork/lightning-onion v1.0.2-0.20210520211913-522b799e65b1 h1:h1BsjPzWea790mAXISoiT/qr0JRcixTCDNLmjsDThSw=
491489
github.com/lightningnetwork/lightning-onion v1.0.2-0.20210520211913-522b799e65b1/go.mod h1:rigfi6Af/KqsF7Za0hOgcyq2PNH4AN70AaMRxcJkff4=
492-
github.com/lightningnetwork/lnd v0.14.2-beta h1:v5Xgf0HjgA+umoinNrihMSoAuy52tYQnxCzX0wFaRwQ=
493-
github.com/lightningnetwork/lnd v0.14.2-beta/go.mod h1:BKTR+jbfcyFwsOPb3m8HaM09YmZF/SsbWd5UTCgDZlo=
490+
github.com/lightningnetwork/lnd v0.14.3-beta h1:7qPvlQt6sHRGsKABsLTFI45KaprQT0t3wTmqkJoRkkk=
491+
github.com/lightningnetwork/lnd v0.14.3-beta/go.mod h1:BKTR+jbfcyFwsOPb3m8HaM09YmZF/SsbWd5UTCgDZlo=
494492
github.com/lightningnetwork/lnd/cert v1.1.0/go.mod h1:3MWXVLLPI0Mg0XETm9fT4N9Vyy/8qQLmaM5589bEggM=
495493
github.com/lightningnetwork/lnd/clock v1.0.1/go.mod h1:KnQudQ6w0IAMZi1SgvecLZQZ43ra2vpDNj7H/aasemg=
496494
github.com/lightningnetwork/lnd/clock v1.1.0 h1:/yfVAwtPmdx45aQBoXQImeY7sOIEr7IXlImRMBOZ7GQ=
@@ -557,12 +555,10 @@ github.com/nwaples/rardecode v1.1.2/go.mod h1:5DzqNKiOdpKKBH87u8VlvAnPZMXcGRhxWk
557555
github.com/oklog/ulid v1.3.1/go.mod h1:CirwcVhetQ6Lv90oh/F+FBtV6XMibvdAFo93nm5qn4U=
558556
github.com/onsi/ginkgo v0.0.0-20170829012221-11459a886d9c/go.mod h1:lLunBs/Ym6LB5Z9jYTR76FiuTmxDTDusOGeTQH+WWjE=
559557
github.com/onsi/ginkgo v1.6.0/go.mod h1:lLunBs/Ym6LB5Z9jYTR76FiuTmxDTDusOGeTQH+WWjE=
560-
github.com/onsi/ginkgo v1.7.0 h1:WSHQ+IS43OoUrWtD1/bbclrwK8TTH5hzp+umCiuxHgs=
561558
github.com/onsi/ginkgo v1.7.0/go.mod h1:lLunBs/Ym6LB5Z9jYTR76FiuTmxDTDusOGeTQH+WWjE=
562559
github.com/onsi/gomega v0.0.0-20170829124025-dcabb60a477c/go.mod h1:C1qb7wdrVGGVU+Z6iS04AVkA3Q65CEZX59MT0QO5uiA=
563560
github.com/onsi/gomega v1.4.1/go.mod h1:C1qb7wdrVGGVU+Z6iS04AVkA3Q65CEZX59MT0QO5uiA=
564561
github.com/onsi/gomega v1.4.2/go.mod h1:ex+gbHU/CVuBBDIJjb2X0qEXbFg53c61hWP/1CpauHY=
565-
github.com/onsi/gomega v1.4.3 h1:RE1xgDvH7imwFD45h+u2SgIfERHlS2yNG4DObb5BSKU=
566562
github.com/onsi/gomega v1.4.3/go.mod h1:ex+gbHU/CVuBBDIJjb2X0qEXbFg53c61hWP/1CpauHY=
567563
github.com/opentracing/opentracing-go v1.1.0/go.mod h1:UkNAQd3GIcIGf0SeVgPpRdFStlNbqXla1AfSYxPUl2o=
568564
github.com/ory/go-acc v0.2.6/go.mod h1:4Kb/UnPcT8qRAk3IAxta+hvVapdxTLWtrr7bFLlEgpw=
@@ -823,7 +819,6 @@ golang.org/x/mod v0.1.1-0.20191105210325-c90efee705ee/go.mod h1:QqPTAvyqsEbceGzB
823819
golang.org/x/mod v0.1.1-0.20191107180719-034126e5016b/go.mod h1:QqPTAvyqsEbceGzBzNggFXnrqF1CaUcvgkdR5Ot7KZg=
824820
golang.org/x/mod v0.2.0/go.mod h1:s0Qsj1ACt9ePp/hMypM3fl4fZqREWJwdYDEqhRiZZUA=
825821
golang.org/x/mod v0.3.0/go.mod h1:s0Qsj1ACt9ePp/hMypM3fl4fZqREWJwdYDEqhRiZZUA=
826-
golang.org/x/mod v0.4.2 h1:Gz96sIWK3OalVv/I/qNygP42zyoKp3xptRVCWRFEBvo=
827822
golang.org/x/mod v0.4.2/go.mod h1:s0Qsj1ACt9ePp/hMypM3fl4fZqREWJwdYDEqhRiZZUA=
828823
golang.org/x/net v0.0.0-20170915142106-8351a756f30f/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4=
829824
golang.org/x/net v0.0.0-20180719180050-a680a1efc54d/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4=
@@ -1142,7 +1137,6 @@ gopkg.in/check.v1 v1.0.0-20190902080502-41f04d3bba15/go.mod h1:Co6ibVJAznAaIkqp8
11421137
gopkg.in/errgo.v1 v1.0.1 h1:oQFRXzZ7CkBGdm1XZm/EbQYaYNNEElNBOd09M6cqNso=
11431138
gopkg.in/errgo.v1 v1.0.1/go.mod h1:3NjfXwocQRYAPTq4/fzX+CwUhPRcR/azYRhj8G+LqMo=
11441139
gopkg.in/errgo.v2 v2.1.0/go.mod h1:hNsd1EY+bozCKY1Ytp96fpM3vjJbqLJn88ws8XvfDNI=
1145-
gopkg.in/fsnotify.v1 v1.4.7 h1:xOHLXZwVvI9hhs+cLKq5+I5onOuwQLhQwiu63xxlHs4=
11461140
gopkg.in/fsnotify.v1 v1.4.7/go.mod h1:Tz8NjZHkW78fSQdbUxIjBTcgA1z1m8ZHf0WmKUhAMys=
11471141
gopkg.in/gemnasium/logrus-airbrake-hook.v2 v2.1.2/go.mod h1:Xk6kEKp8OKb+X14hQBKWaSkCsqBpgog8nAV2xsGOxlo=
11481142
gopkg.in/inconshreveable/log15.v2 v2.0.0-20180818164646-67afb5ed74ec/go.mod h1:aPpfJ7XW+gOuirDoZ8gHhLh3kZ1B08FtV2bbmy7Jv3s=
@@ -1158,7 +1152,6 @@ gopkg.in/mgo.v2 v2.0.0-20190816093944-a6b53ec6cb22/go.mod h1:yeKp02qBN3iKW1OzL3M
11581152
gopkg.in/natefinch/lumberjack.v2 v2.0.0 h1:1Lc07Kr7qY4U2YPouBjpCLxpiyxIVoxqXgkXLknAOE8=
11591153
gopkg.in/natefinch/lumberjack.v2 v2.0.0/go.mod h1:l0ndWWf7gzL7RNwBG7wST/UCcT4T24xpD6X8LsfU/+k=
11601154
gopkg.in/resty.v1 v1.12.0/go.mod h1:mDo4pnntr5jdWRML875a/NmxYqAlA73dVijT2AXvQQo=
1161-
gopkg.in/tomb.v1 v1.0.0-20141024135613-dd632973f1e7 h1:uRGJdciOHaEIrze2W8Q3AKkepLTh2hOroT7a+7czfdQ=
11621155
gopkg.in/tomb.v1 v1.0.0-20141024135613-dd632973f1e7/go.mod h1:dt/ZhP58zS4L8KSrWDmTeBkI65Dw0HsyUHuEVlX15mw=
11631156
gopkg.in/yaml.v2 v2.0.0-20170812160011-eb3733d160e7/go.mod h1:JAlM8MvJe8wmxCU4Bli9HhUf9+ttbYbLASfIpnQbh74=
11641157
gopkg.in/yaml.v2 v2.2.1/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI=

lnd_services.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ var (
4242
minimalCompatibleVersion = &verrpc.Version{
4343
AppMajor: 0,
4444
AppMinor: 14,
45-
AppPatch: 2,
45+
AppPatch: 3,
4646
BuildTags: DefaultBuildTags,
4747
}
4848

0 commit comments

Comments
 (0)