aboutsummaryrefslogtreecommitdiff
path: root/src/uint256.h
diff options
context:
space:
mode:
authorPieter Wuille <pieter.wuille@gmail.com>2014-07-09 17:25:09 +0200
committerPieter Wuille <pieter.wuille@gmail.com>2014-07-14 16:13:08 +0200
commitbc42503f6ab304608c321986a870795e45f5a016 (patch)
treecbb104bd5010fd817a460c89b10470e8b60f9ea7 /src/uint256.h
parentbdd5b587fc7fd1b4dda479c4aad15c874b22e8f3 (diff)
downloadbitcoin-bc42503f6ab304608c321986a870795e45f5a016.tar.xz
Use unordered_map for CCoinsViewCache with salted hash
Diffstat (limited to 'src/uint256.h')
-rw-r--r--src/uint256.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/uint256.h b/src/uint256.h
index 82db7758c9..ad0a56f447 100644
--- a/src/uint256.h
+++ b/src/uint256.h
@@ -21,7 +21,7 @@ public:
template<unsigned int BITS>
class base_uint
{
-private:
+protected:
enum { WIDTH=BITS/32 };
uint32_t pn[WIDTH];
public:
@@ -322,6 +322,8 @@ public:
// implementation accident.
uint256& SetCompact(uint32_t nCompact, bool *pfNegative = NULL, bool *pfOverflow = NULL);
uint32_t GetCompact(bool fNegative = false) const;
+
+ uint64_t GetHash(const uint256& salt) const;
};
#endif