From 607ba1577db935f9981b3c97508eaf173995e8d4 Mon Sep 17 00:00:00 2001 From: Gav Wood Date: Thu, 27 Feb 2014 10:25:01 +0000 Subject: [PATCH] Hash fix. --- libethereum/Common.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libethereum/Common.h b/libethereum/Common.h index df4af0fca..1396cd6aa 100644 --- a/libethereum/Common.h +++ b/libethereum/Common.h @@ -151,7 +151,7 @@ public: size_t operator()(FixedHash const& value) const { size_t h = 0; - for (auto i: m_data) + for (auto i: value.m_data) h = (h << 5 - h) + i; return h; }