Skip to content

Commit 63b732e

Browse files
committed
Add LNC + Speedloader
1 parent ec62541 commit 63b732e

File tree

5 files changed

+1599
-656
lines changed

5 files changed

+1599
-656
lines changed

go.mod

Lines changed: 11 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@ module github.com/lightningnetwork/lnd
33
require (
44
github.com/NebulousLabs/go-upnp v0.0.0-20180202185039-29b680b06c82
55
github.com/Yawning/aez v0.0.0-20211027044916-e49e68abd344
6+
github.com/andybalholm/brotli v1.0.3
7+
github.com/breez/breez v0.0.0-00010101000000-000000000000
68
github.com/btcsuite/btcd v0.23.5-0.20230228185050-38331963bddd
79
github.com/btcsuite/btcd/btcec/v2 v2.3.2
810
github.com/btcsuite/btcd/btcutil v1.1.3
@@ -50,6 +52,7 @@ require (
5052
github.com/stretchr/testify v1.8.1
5153
github.com/tv42/zbase32 v0.0.0-20160707012821-501572607d02
5254
github.com/urfave/cli v1.22.9
55+
go.etcd.io/bbolt v1.3.6
5356
go.etcd.io/etcd/client/pkg/v3 v3.5.7
5457
go.etcd.io/etcd/client/v3 v3.5.7
5558
golang.org/x/crypto v0.7.0
@@ -69,7 +72,6 @@ require (
6972
github.com/NebulousLabs/fastrand v0.0.0-20181203155948-6fb6489aac4e // indirect
7073
github.com/aead/chacha20 v0.0.0-20180709150244-8b13a72661da // indirect
7174
github.com/aead/siphash v1.0.1 // indirect
72-
github.com/andybalholm/brotli v1.0.3 // indirect
7375
github.com/beorn7/perks v1.0.1 // indirect
7476
github.com/btcsuite/btcwallet/wallet/txsizes v1.2.3 // indirect
7577
github.com/btcsuite/go-socks v0.0.0-20170105172521-4720035b7bfd // indirect
@@ -81,7 +83,7 @@ require (
8183
github.com/coreos/go-systemd/v22 v22.3.2 // indirect
8284
github.com/cpuguy83/go-md2man/v2 v2.0.0 // indirect
8385
github.com/decred/dcrd/crypto/blake256 v1.0.0 // indirect
84-
github.com/decred/dcrd/lru v1.0.0 // indirect
86+
github.com/decred/dcrd/lru v1.1.0 // indirect
8587
github.com/dsnet/compress v0.0.1 // indirect
8688
github.com/dustin/go-humanize v1.0.0 // indirect
8789
github.com/fergusstrange/embedded-postgres v1.10.0 // indirect
@@ -142,7 +144,6 @@ require (
142144
github.com/xi2/xz v0.0.0-20171230120015-48954b6210f8 // indirect
143145
github.com/xiang90/probing v0.0.0-20190116061207-43a291ad63a2 // indirect
144146
gitlab.com/yawning/bsaes.git v0.0.0-20190805113838-0a714cd429ec // indirect
145-
go.etcd.io/bbolt v1.3.6 // indirect
146147
go.etcd.io/etcd/api/v3 v3.5.7 // indirect
147148
go.etcd.io/etcd/client/v2 v2.305.7 // indirect
148149
go.etcd.io/etcd/pkg/v3 v3.5.7 // indirect
@@ -164,7 +165,6 @@ require (
164165
golang.org/x/text v0.8.0 // indirect
165166
golang.org/x/tools v0.6.0 // indirect
166167
google.golang.org/genproto v0.0.0-20220314164441-57ef72a4c106 // indirect
167-
gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c // indirect
168168
gopkg.in/errgo.v1 v1.0.1 // indirect
169169
gopkg.in/natefinch/lumberjack.v2 v2.0.0 // indirect
170170
gopkg.in/yaml.v2 v2.4.0 // indirect
@@ -195,6 +195,13 @@ replace github.com/gogo/protobuf => github.com/gogo/protobuf v1.3.2
195195

196196
replace github.com/lightningnetwork/lnd/tor => ./tor
197197

198+
// speedloader
199+
replace github.com/breez/breez => github.com/djkazic/breez v0.0.8
200+
201+
replace github.com/btcsuite/btcwallet => github.com/djkazic/btcwallet v1.5.4
202+
203+
replace github.com/btcsuite/btcwallet/walletdb => github.com/djkazic/btcwallet/walletdb v1.5.4
204+
198205
// If you change this please also update .github/pull_request_template.md and
199206
// docs/INSTALL.md.
200207
go 1.19

0 commit comments

Comments
 (0)