aboutsummaryrefslogtreecommitdiff
path: root/src/main.h
diff options
context:
space:
mode:
authorWladimir J. van der Laan <laanwj@gmail.com>2014-12-15 09:12:11 +0100
committerWladimir J. van der Laan <laanwj@gmail.com>2015-01-05 15:45:34 +0100
commit807658549c61d1fb0da3138ea0ca749ecba61723 (patch)
treeb6df872f110b43a75a65f4d8408172a048bb82c7 /src/main.h
parent4f1524966a99c83db8c0c9f1ff74789253a1171e (diff)
downloadbitcoin-807658549c61d1fb0da3138ea0ca749ecba61723.tar.xz
Replace GetLow64 with GetCheapHash
Diffstat (limited to 'src/main.h')
-rw-r--r--src/main.h2
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;