]> Git Repo - VerusCoin.git/blobdiff - src/arith_uint256.h
Implement accurate memory accounting for mempool
[VerusCoin.git] / src / arith_uint256.h
index ec8e15997fa05b6dfc84a9d1e3d9a2cafddceaec..103c78bb8e398785f1d1c4d31d556ab290386d85 100644 (file)
@@ -57,7 +57,6 @@ public:
     }
 
     explicit base_uint(const std::string& str);
-    explicit base_uint(const std::vector<unsigned char>& vch);
 
     bool operator!() const
     {
@@ -257,7 +256,6 @@ public:
     arith_uint256(const base_uint<256>& b) : base_uint<256>(b) {}
     arith_uint256(uint64_t b) : base_uint<256>(b) {}
     explicit arith_uint256(const std::string& str) : base_uint<256>(str) {}
-    explicit arith_uint256(const std::vector<unsigned char>& vch) : base_uint<256>(vch) {}
 
     /**
      * The "compact" format is a representation of a whole
@@ -289,4 +287,4 @@ public:
 uint256 ArithToUint256(const arith_uint256 &);
 arith_uint256 UintToArith256(const uint256 &);
 
-#endif // BITCOIN_UINT256_H
+#endif // BITCOIN_ARITH_UINT256_H
This page took 0.024475 seconds and 4 git commands to generate.