multi: switch from btcrpcclient to rpcclient

This commit is contained in:
Olaoluwa Osuntokun
2017-08-24 18:54:17 -07:00
parent ac128e4545
commit 9f0efddc20
14 changed files with 48 additions and 48 deletions

View File

@@ -10,8 +10,8 @@ import (
"github.com/lightninglabs/neutrino"
"github.com/lightningnetwork/lnd/chainntnfs"
"github.com/roasbeef/btcd/chaincfg/chainhash"
"github.com/roasbeef/btcd/rpcclient"
"github.com/roasbeef/btcd/wire"
"github.com/roasbeef/btcrpcclient"
"github.com/roasbeef/btcutil"
"github.com/roasbeef/btcutil/gcs/builder"
"github.com/roasbeef/btcwallet/waddrmgr"
@@ -142,7 +142,7 @@ func (n *NeutrinoNotifier) Start() error {
neutrino.StartBlock(startingPoint),
neutrino.QuitChan(n.quit),
neutrino.NotificationHandlers(
btcrpcclient.NotificationHandlers{
rpcclient.NotificationHandlers{
OnFilteredBlockConnected: n.onFilteredBlockConnected,
OnFilteredBlockDisconnected: n.onFilteredBlockDisconnected,
},