diff options
| author | Pieter Wuille <[email protected]> | 2012-01-04 23:39:45 +0100 |
|---|---|---|
| committer | Pieter Wuille <[email protected]> | 2012-02-24 13:41:04 +0100 |
| commit | 5fee401fe14aa6459428a26a82f764db70a6a0b9 (patch) | |
| tree | 7920219dabcdd335a7432aa05081d168c98dbf06 /src/uint256.h | |
| parent | Checkpoint block 168,000 (diff) | |
| download | discoin-5fee401fe14aa6459428a26a82f764db70a6a0b9.tar.xz discoin-5fee401fe14aa6459428a26a82f764db70a6a0b9.zip | |
CAddrMan: stochastic address manager
Design goals:
* Only keep a limited number of addresses around, so that addr.dat does not grow without bound.
* Keep the address tables in-memory, and occasionally write the table to addr.dat.
* Make sure no (localized) attacker can fill the entire table with his nodes/addresses.
See comments in addrman.h for more detailed information.
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 caf6fa118..783e7069e 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 { |