Skip to content

Commit 54d3a09

Browse files
committed
build: remove lnd dep by including tlv varint impls
In this commit, we remove the circular-ish dep with `lnd` by removing our dependency on the tlv package. We do this by copying over the implementation of the varint encoding/decoding from the tlv package.
1 parent 0c0c9db commit 54d3a09

File tree

4 files changed

+114
-192
lines changed

4 files changed

+114
-192
lines changed

go.mod

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@ require (
66
github.com/btcsuite/btclog v0.0.0-20170628155309-84c8d2346e9f
77
github.com/btcsuite/btcutil v0.0.0-20190425235716-9e5f4b9a998d
88
github.com/davecgh/go-spew v1.1.1
9-
github.com/lightningnetwork/lnd v0.7.1-beta.0.20190807225126-ea77ff91c221
109
golang.org/x/crypto v0.0.0-20190211182817-74369b46fc67
10+
golang.org/x/sys v0.0.0-20190209173611-3b5209105503 // indirect
1111
)
12+
13+
go 1.13

0 commit comments

Comments
 (0)