X-Git-Url: https://git.novaco.in/?p=novacoin.git;a=blobdiff_plain;f=src%2Fuint256.cpp;h=8faf05255aed6a697cb81c6a0c38a744b941cfc4;hp=2d65072dafd7ee0814f8a3b8f5dc73c05d2296b0;hb=edbfc61d401c0bd9f4b85dd49d1a1e77c1b2eb02;hpb=257604e82a05f2f478951353d43d5ed487b9ab8f diff --git a/src/uint256.cpp b/src/uint256.cpp index 2d65072..8faf052 100644 --- a/src/uint256.cpp +++ b/src/uint256.cpp @@ -3,11 +3,8 @@ // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. - #include "uint256.h" -#include - #include #include #include @@ -216,10 +213,3 @@ uint256::uint256(const std::vector& vch) else *this = 0; } - -uint256 GetRandHash() -{ - uint256 hash; - RAND_bytes(hash.begin(), hash.size()); - return hash; -}