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:
Olaoluwa Osuntokun
2019-03-12 21:37:15 -07:00
parent a24eeb9135
commit d86fe393cd
5 changed files with 28 additions and 15 deletions

View File

@@ -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()