routing/chainview: update to latest API changes

This commit is contained in:
Olaoluwa Osuntokun 2018-08-23 20:19:47 -07:00 committed by Conner Fromknecht
parent 9b6b78a932
commit 85c0dd3de0
No known key found for this signature in database
GPG Key ID: E7D737B67FA592C7

@ -273,7 +273,7 @@ func (c *CfFilteredChainView) FilterBlock(blockHash *chainhash.Hash) (*FilteredB
// If we reach this point, then there was a match, so we'll need to
// fetch the block itself so we can scan it for any actual matches (as
// there's a fp rate).
block, err := c.p2pNode.GetBlockFromNetwork(*blockHash)
block, err := c.p2pNode.GetBlock(*blockHash)
if err != nil {
return nil, err
}