Remove uint256.h from util header
[novacoin.git] / src / util.cpp
index a63ca2c..942668e 100644 (file)
@@ -181,13 +181,6 @@ int GetRandInt(int nMax)
     return static_cast<int>(GetRand(nMax));
 }
 
-uint256 GetRandHash()
-{
-    uint256 hash;
-    RAND_bytes(hash.begin(), hash.size());
-    return hash;
-}
-
 void FillRand(uint8_t *buffer, size_t nCount)
 {
     RAND_bytes(buffer, nCount);