| 66 | } |
| 67 | |
| 68 | bool CBloomFilter::IsWithinSizeConstraints() const { |
| 69 | return vData.size() <= MAX_BLOOM_FILTER_SIZE && nHashFuncs <= MAX_HASH_FUNCS; |
| 70 | } |
| 71 | |
| 72 | bool CBloomFilter::IsRelevantAndUpdate(CBaseTx* pBaseTx, const uint256& hash) { |
| 73 | // bool fFound = false; |
no test coverage detected