From 1c408adcabee4d1c8bcfb78fda667bdae7d5d134 Mon Sep 17 00:00:00 2001 From: Alex Date: Wed, 11 Oct 2017 13:27:15 -0600 Subject: [PATCH] routing/chainview: update neutrino driver to comply with BIP --- 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 b877ce94..6c9a259d 100644 --- a/routing/chainview/neutrino.go +++ b/routing/chainview/neutrino.go @@ -236,7 +236,7 @@ func (c *CfFilteredChainView) FilterBlock(blockHash *chainhash.Hash) (*FilteredB // Next, using the block, hash, we'll fetch the compact filter for this // block. We only require the regular filter as we're just looking for // outpoint that have been spent. - filter, err := c.p2pNode.GetCFilter(*blockHash, false) + filter, err := c.p2pNode.GetCFilter(*blockHash, wire.GCSFilterRegular) if err != nil { return nil, err }