diff options
Diffstat (limited to 'src/uint256.h')
-rw-r--r-- | src/uint256.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/uint256.h b/src/uint256.h index caf6fa118b..783e7069e9 100644 --- a/src/uint256.h +++ b/src/uint256.h @@ -348,6 +348,10 @@ public: return sizeof(pn); } + uint64 Get64(int n=0) const + { + return pn[2*n] | (uint64)pn[2*n+1] << 32; + } unsigned int GetSerializeSize(int nType=0, int nVersion=PROTOCOL_VERSION) const { |