diff options
| author | Pieter Wuille <[email protected]> | 2014-09-02 09:58:09 +0200 |
|---|---|---|
| committer | Pieter Wuille <[email protected]> | 2014-09-02 09:58:09 +0200 |
| commit | 3f6540ad8f9c7b45a0dd2b260a282d3adad2406f (patch) | |
| tree | 046e2e1e5d88ae36286e0bb99ce530ff33b570b7 /src/bloom.h | |
| parent | Serializer simplifications after IMPLEMENT_SERIALIZE overhaul (diff) | |
| download | discoin-3f6540ad8f9c7b45a0dd2b260a282d3adad2406f.tar.xz discoin-3f6540ad8f9c7b45a0dd2b260a282d3adad2406f.zip | |
Rename IMPLEMENT_SERIALIZE to ADD_SERIALIZE_METHODS
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 4a710928c..143e3b4c7 100644 --- a/src/bloom.h +++ b/src/bloom.h @@ -62,7 +62,7 @@ public: CBloomFilter(unsigned int nElements, double nFPRate, unsigned int nTweak, unsigned char nFlagsIn); CBloomFilter() : isFull(true), isEmpty(false), nHashFuncs(0), nTweak(0), nFlags(0) {} - IMPLEMENT_SERIALIZE; + ADD_SERIALIZE_METHODS; template <typename Stream, typename Operation> inline void SerializationOp(Stream& s, Operation ser_action, int nType, int nVersion) { |