diff options
author | Wladimir J. van der Laan <laanwj@gmail.com> | 2014-12-15 09:12:11 +0100 |
---|---|---|
committer | Wladimir J. van der Laan <laanwj@gmail.com> | 2015-01-05 15:45:34 +0100 |
commit | 807658549c61d1fb0da3138ea0ca749ecba61723 (patch) | |
tree | b6df872f110b43a75a65f4d8408172a048bb82c7 /src/main.h | |
parent | 4f1524966a99c83db8c0c9f1ff74789253a1171e (diff) |
Replace GetLow64 with GetCheapHash
Diffstat (limited to 'src/main.h')
-rw-r--r-- | src/main.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.h b/src/main.h index 9049f5bb7d..1e00114768 100644 --- a/src/main.h +++ b/src/main.h @@ -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; |