]> Git Repo - VerusCoin.git/blobdiff - src/uint252.h
Remove debug outs
[VerusCoin.git] / src / uint252.h
index c5ab1a38067d6282e1114efb43017cf1c24bb41c..e7b98ddf0885f1627dc54a4d31cbc8e77bdbcad8 100644 (file)
@@ -15,7 +15,7 @@ public:
     ADD_SERIALIZE_METHODS;
 
     template <typename Stream, typename Operation>
-    inline void SerializationOp(Stream& s, Operation ser_action, int nType, int nVersion) {
+    inline void SerializationOp(Stream& s, Operation ser_action) {
         READWRITE(contents);
 
         if ((*contents.begin()) & 0xF0) {
@@ -43,6 +43,8 @@ public:
     uint256 inner() const {
         return contents;
     }
+
+    friend inline bool operator==(const uint252& a, const uint252& b) { return a.contents == b.contents; }
 };
 
 #endif
This page took 0.020535 seconds and 4 git commands to generate.