[#BlockFilterIndex-LookupFilterHashRange] = xref:BlockFilterIndex.adoc[BlockFilterIndex]::LookupFilterHashRange :relfileprefix: ../ :mrdocs: Get a range of filter hashes between two heights on a chain. == Synopsis Declared in `<index/blockfilterindex.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- bool LookupFilterHashRange( int start_height, xref:CBlockIndex.adoc[CBlockIndex] const* stop_index, std::vector<uint256>& hashes_out) const; ---- == Return Value True if all filter hashes in the range were found. == Parameters [cols="1,4"] |=== | Name| Description | *start_height* | Height of the first block in the range. | *stop_index* | Block index entry of the last block in the range. | *hashes_out* | Set to the filter hashes found in the range. |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#