uint256: Remove unnecessary crypto/common.h use

This commit is contained in:
Karl-Johan Alm
2018-05-17 14:50:15 +09:00
parent cb25cd6aa1
commit bf2e010973
5 changed files with 21 additions and 18 deletions

View File

@@ -34,7 +34,7 @@ public:
int RandomInt(int nMax) override
{
state = (CHashWriter(SER_GETHASH, 0) << state).GetHash().GetCheapHash();
state = (CHashWriter(SER_GETHASH, 0) << state).GetCheapHash();
return (unsigned int)(state % nMax);
}