mirror of
https://github.com/lightningnetwork/lnd.git
synced 2025-08-28 22:50:58 +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:
@@ -107,7 +107,12 @@ func (c *CfFilteredChainView) Start() error {
|
||||
|
||||
// Finally, we'll create our rescan struct, start it, and launch all
|
||||
// the goroutines we need to operate this FilteredChainView instance.
|
||||
c.chainView = c.p2pNode.NewRescan(rescanOptions...)
|
||||
c.chainView = neutrino.NewRescan(
|
||||
&neutrino.RescanChainSource{
|
||||
ChainService: c.p2pNode,
|
||||
},
|
||||
rescanOptions...,
|
||||
)
|
||||
c.rescanErrChan = c.chainView.Start()
|
||||
|
||||
c.blockQueue.Start()
|
||||
|
Reference in New Issue
Block a user