mirror of
https://github.com/lightninglabs/loop
synced 2024-11-04 06:00:21 +00:00
435238ac03
We need the newer version of lndclient to get our synced to chain state. This requires changes to our test mock, so it is separated into a different commit. Since lndclient is expanding to be used in projects other than loop, the client interface is embedded in our mock rather than implementing functions we do not need. Functions that we already use in tests are updated accordingly. Note that while this commit bumps us to a version of lndclient that defaults to requiring lnd 0.11, we do not bump our required version yet because we are not using any new endpoints.
26 lines
958 B
Modula-2
26 lines
958 B
Modula-2
module github.com/lightninglabs/loop
|
|
|
|
require (
|
|
github.com/btcsuite/btcd v0.20.1-beta.0.20200730232343-1db1b6f8217f
|
|
github.com/btcsuite/btclog v0.0.0-20170628155309-84c8d2346e9f
|
|
github.com/btcsuite/btcutil v1.0.2
|
|
github.com/btcsuite/btcwallet/wtxmgr v1.2.0
|
|
github.com/coreos/bbolt v1.3.3
|
|
github.com/fortytw2/leaktest v1.3.0
|
|
github.com/golang/protobuf v1.3.2
|
|
github.com/grpc-ecosystem/grpc-gateway v1.14.3
|
|
github.com/jessevdk/go-flags v1.4.0
|
|
github.com/lightninglabs/lndclient v1.0.1-0.20200811080044-d1a60f30cf60
|
|
github.com/lightninglabs/protobuf-hex-display v1.3.3-0.20191212020323-b444784ce75d
|
|
github.com/lightningnetwork/lnd v0.11.0-beta.rc2
|
|
github.com/lightningnetwork/lnd/queue v1.0.4
|
|
github.com/stretchr/testify v1.5.1
|
|
github.com/urfave/cli v1.20.0
|
|
golang.org/x/net v0.0.0-20191002035440-2ec189313ef0
|
|
google.golang.org/genproto v0.0.0-20190927181202-20e1ac93f88c
|
|
google.golang.org/grpc v1.24.0
|
|
gopkg.in/macaroon.v2 v2.1.0
|
|
)
|
|
|
|
go 1.13
|