aboutsummaryrefslogtreecommitdiff
path: root/src/hash.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/hash.h')
-rw-r--r--src/hash.h17
1 files changed, 0 insertions, 17 deletions
diff --git a/src/hash.h b/src/hash.h
index d355b703ff..132e1a9fb3 100644
--- a/src/hash.h
+++ b/src/hash.h
@@ -146,23 +146,6 @@ public:
}
};
-class CHashWriter : public HashWriter
-{
-private:
- const int nVersion;
-
-public:
- CHashWriter(int nVersionIn) : nVersion{nVersionIn} {}
-
- int GetVersion() const { return nVersion; }
-
- template<typename T>
- CHashWriter& operator<<(const T& obj) {
- ::Serialize(*this, obj);
- return (*this);
- }
-};
-
/** Reads data from an underlying stream, while hashing the read data. */
template <typename Source>
class HashVerifier : public HashWriter