Replace GetLow64 with GetCheapHash

This commit is contained in:
Wladimir J. van der Laan
2014-12-15 09:12:11 +01:00
parent 4f1524966a
commit 807658549c
2 changed files with 5 additions and 5 deletions

View File

@@ -106,7 +106,7 @@ static const unsigned char REJECT_CHECKPOINT = 0x43;
struct BlockHasher
{
size_t operator()(const uint256& hash) const { return hash.GetLow64(); }
size_t operator()(const uint256& hash) const { return hash.GetCheapHash(); }
};
extern CScript COINBASE_FLAGS;