aboutsummaryrefslogtreecommitdiff
path: root/src/bloom.h
diff options
context:
space:
mode:
author251 <[email protected]>2018-08-13 00:37:15 +0200
committer251 <[email protected]>2018-08-13 01:24:55 +0200
commit265bd50884ac1984c08f0e5916256d5f12e655f5 (patch)
treec0605a4d89b82e0bd276013ae08eec90f7e59193 /src/bloom.h
parentMerge #13944: test: Port usage of deprecated optparse module to argparse module (diff)
downloaddiscoin-265bd50884ac1984c08f0e5916256d5f12e655f5.tar.xz
discoin-265bd50884ac1984c08f0e5916256d5f12e655f5.zip
Removes unsed `CBloomFilter` constructor.
This commit removes the `CBloomFilter::CBloomFilter(const unsigned int, const double, const unsigned int)` constructor, which became obsolete with 086ee67.
Diffstat (limited to 'src/bloom.h')
-rw-r--r--src/bloom.h4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/bloom.h b/src/bloom.h
index e136fcebf..7d3aa878b 100644
--- a/src/bloom.h
+++ b/src/bloom.h
@@ -53,10 +53,6 @@ private:
unsigned int Hash(unsigned int nHashNum, const std::vector<unsigned char>& vDataToHash) const;
- // Private constructor for CRollingBloomFilter, no restrictions on size
- CBloomFilter(const unsigned int nElements, const double nFPRate, const unsigned int nTweak);
- friend class CRollingBloomFilter;
-
public:
/**
* Creates a new bloom filter which will provide the given fp rate when filled with the given number of elements