diff options
Diffstat (limited to 'src/bloom.h')
-rw-r--r-- | src/bloom.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bloom.h b/src/bloom.h index d0caf9e9fa..54d16d7126 100644 --- a/src/bloom.h +++ b/src/bloom.h @@ -60,7 +60,7 @@ public: // It should generally always be a random value (and is largely only exposed for unit testing) // nFlags should be one of the BLOOM_UPDATE_* enums (not _MASK) CBloomFilter(unsigned int nElements, double nFPRate, unsigned int nTweak, unsigned char nFlagsIn); - CBloomFilter() : isFull(true) {} + CBloomFilter() : isFull(true), isEmpty(false), nHashFuncs(0), nTweak(0), nFlags(0) {} IMPLEMENT_SERIALIZE ( |