From 85c0dd3de00bf3a9a840ce8d20f42d26eb6ef9db Mon Sep 17 00:00:00 2001 From: Olaoluwa Osuntokun Date: Thu, 23 Aug 2018 20:19:47 -0700 Subject: [PATCH] routing/chainview: update to latest API changes --- routing/chainview/neutrino.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/routing/chainview/neutrino.go b/routing/chainview/neutrino.go index 56d16708..6a22bbb1 100644 --- a/routing/chainview/neutrino.go +++ b/routing/chainview/neutrino.go @@ -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 }