mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-02-12 11:19:08 -05:00
Removes unsed CBloomFilter
constructor.
This commit removes the `CBloomFilter::CBloomFilter(const unsigned int, const double, const unsigned int)` constructor, which became obsolete with 086ee67
.
This commit is contained in:
parent
0df7a6c13e
commit
265bd50884
2 changed files with 0 additions and 15 deletions
|
@ -38,17 +38,6 @@ CBloomFilter::CBloomFilter(const unsigned int nElements, const double nFPRate, c
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
// Private constructor used by CRollingBloomFilter
|
|
||||||
CBloomFilter::CBloomFilter(const unsigned int nElements, const double nFPRate, const unsigned int nTweakIn) :
|
|
||||||
vData((unsigned int)(-1 / LN2SQUARED * nElements * log(nFPRate)) / 8),
|
|
||||||
isFull(false),
|
|
||||||
isEmpty(true),
|
|
||||||
nHashFuncs((unsigned int)(vData.size() * 8 / nElements * LN2)),
|
|
||||||
nTweak(nTweakIn),
|
|
||||||
nFlags(BLOOM_UPDATE_NONE)
|
|
||||||
{
|
|
||||||
}
|
|
||||||
|
|
||||||
inline unsigned int CBloomFilter::Hash(unsigned int nHashNum, const std::vector<unsigned char>& vDataToHash) const
|
inline unsigned int CBloomFilter::Hash(unsigned int nHashNum, const std::vector<unsigned char>& vDataToHash) const
|
||||||
{
|
{
|
||||||
// 0xFBA4C795 chosen as it guarantees a reasonable bit difference between nHashNum values.
|
// 0xFBA4C795 chosen as it guarantees a reasonable bit difference between nHashNum values.
|
||||||
|
|
|
@ -53,10 +53,6 @@ private:
|
||||||
|
|
||||||
unsigned int Hash(unsigned int nHashNum, const std::vector<unsigned char>& vDataToHash) const;
|
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:
|
public:
|
||||||
/**
|
/**
|
||||||
* Creates a new bloom filter which will provide the given fp rate when filled with the given number of elements
|
* Creates a new bloom filter which will provide the given fp rate when filled with the given number of elements
|
||||||
|
|
Loading…
Add table
Reference in a new issue