routing/chainview: bitcoind back-end now requires explicit `NotifyBlocks()`

This commit is contained in:
Alex 2018-03-14 12:16:40 -06:00
parent 5818bdba96
commit 948cb09c14
1 changed files with 5 additions and 0 deletions

View File

@ -101,6 +101,11 @@ func (b *BitcoindFilteredChainView) Start() error {
return err
}
err = b.chainClient.NotifyBlocks()
if err != nil {
return err
}
_, bestHeight, err := b.chainClient.GetBestBlock()
if err != nil {
return err