aboutsummaryrefslogtreecommitdiff
path: root/src/bloom.h
diff options
context:
space:
mode:
authorTom Harding <tomh@thinlink.com>2014-06-25 16:21:29 -0700
committerTom Harding <tomh@thinlink.com>2014-06-27 07:54:21 -0700
commit8fbf03995df9a2003be603be1a930bc3373d56e0 (patch)
treee726d2f0b835114c4aa5089813a60ed06971f46a /src/bloom.h
parent62599373883a66a958136f48ab0e2b826e3d5bf8 (diff)
downloadbitcoin-8fbf03995df9a2003be603be1a930bc3373d56e0.tar.xz
CBloomFilter::clear() method
Diffstat (limited to 'src/bloom.h')
-rw-r--r--src/bloom.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/bloom.h b/src/bloom.h
index 956bead87f..d0caf9e9fa 100644
--- a/src/bloom.h
+++ b/src/bloom.h
@@ -78,6 +78,8 @@ public:
bool contains(const COutPoint& outpoint) const;
bool contains(const uint256& hash) const;
+ void clear();
+
// True if the size is <= MAX_BLOOM_FILTER_SIZE and the number of hash functions is <= MAX_HASH_FUNCS
// (catch a filter which was just deserialized which was too big)
bool IsWithinSizeConstraints() const;