mirror of
https://github.com/lightningnetwork/lnd.git
synced 2025-09-21 06:06:20 +02:00
multi: update build to latest version of neutrino+btcwallet
In this commit, we update the build to point to the latest version of neutrino and btcwallet. The latest version of neutrino includes a number of bug fixes, and new features like reliably transaction broadcast. The latest version of btcwallet contains a number of bug fixes related to properly remove invalid transactions from its database.
This commit is contained in:
@@ -154,7 +154,12 @@ func (n *NeutrinoNotifier) Start() error {
|
||||
|
||||
// Finally, we'll create our rescan struct, start it, and launch all
|
||||
// the goroutines we need to operate this ChainNotifier instance.
|
||||
n.chainView = n.p2pNode.NewRescan(rescanOptions...)
|
||||
n.chainView = neutrino.NewRescan(
|
||||
&neutrino.RescanChainSource{
|
||||
ChainService: n.p2pNode,
|
||||
},
|
||||
rescanOptions...,
|
||||
)
|
||||
n.rescanErr = n.chainView.Start()
|
||||
|
||||
n.chainUpdates.Start()
|
||||
|
Reference in New Issue
Block a user