From 594dc1b163fb62e9e89e8f8bf116326161ad7bc5 Mon Sep 17 00:00:00 2001 From: Olaoluwa Osuntokun Date: Thu, 5 Jan 2017 13:58:06 -0800 Subject: [PATCH] lnd: switch to the version of the connmgr in roasbeef's fork --- peer.go | 2 +- server.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/peer.go b/peer.go index 1efc28ce..a07a2d78 100644 --- a/peer.go +++ b/peer.go @@ -11,7 +11,6 @@ import ( "sync/atomic" "time" - "github.com/btcsuite/btcd/connmgr" "github.com/btcsuite/fastsha256" "github.com/davecgh/go-spew/spew" "github.com/lightningnetwork/lightning-onion" @@ -21,6 +20,7 @@ import ( "github.com/lightningnetwork/lnd/lnwire" "github.com/roasbeef/btcd/btcec" "github.com/roasbeef/btcd/chaincfg/chainhash" + "github.com/roasbeef/btcd/connmgr" "github.com/roasbeef/btcd/txscript" "github.com/roasbeef/btcd/wire" "github.com/roasbeef/btcutil" diff --git a/server.go b/server.go index 6b921ce3..2c0ab3e3 100644 --- a/server.go +++ b/server.go @@ -9,7 +9,6 @@ import ( "sync/atomic" "time" - "github.com/btcsuite/btcd/connmgr" "github.com/btcsuite/fastsha256" "github.com/lightningnetwork/lightning-onion" "github.com/lightningnetwork/lnd/brontide" @@ -19,6 +18,7 @@ import ( "github.com/lightningnetwork/lnd/lnwallet" "github.com/lightningnetwork/lnd/lnwire" "github.com/roasbeef/btcd/btcec" + "github.com/roasbeef/btcd/connmgr" "github.com/roasbeef/btcutil" "github.com/lightningnetwork/lnd/routing"