diff options
| author | Wladimir J. van der Laan <[email protected]> | 2016-04-18 12:48:06 +0200 |
|---|---|---|
| committer | Wladimir J. van der Laan <[email protected]> | 2016-04-18 12:48:09 +0200 |
| commit | 88616d2008633aaa197df4312585efcd11bf889f (patch) | |
| tree | bebb7e73f55dc66f365767a41fd05d8f69d5fe3d /src/rpc/blockchain.cpp | |
| parent | Merge #7833: tests: Check Content-Type header returned from RPC server (diff) | |
| parent | doc: update release-notes for `gettxoutsetinfo` change (diff) | |
| download | discoin-88616d2008633aaa197df4312585efcd11bf889f.tar.xz discoin-88616d2008633aaa197df4312585efcd11bf889f.zip | |
Merge #7848: Divergence between 32- and 64-bit when hashing >4GB affects `gettxoutsetinfo`
28b400f doc: update release-notes for `gettxoutsetinfo` change (Wladimir J. van der Laan)
76212bb rpc: make sure `gettxoutsetinfo` hash has txids (Wladimir J. van der Laan)
9ad1a51 crypto: bytes counts are 64 bit (Wladimir J. van der Laan)
Diffstat (limited to 'src/rpc/blockchain.cpp')
| -rw-r--r-- | src/rpc/blockchain.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/rpc/blockchain.cpp b/src/rpc/blockchain.cpp index b85b2f6b5..88f6278b2 100644 --- a/src/rpc/blockchain.cpp +++ b/src/rpc/blockchain.cpp @@ -467,6 +467,7 @@ static bool GetUTXOStats(CCoinsView *view, CCoinsStats &stats) CCoins coins; if (pcursor->GetKey(key) && pcursor->GetValue(coins)) { stats.nTransactions++; + ss << key; for (unsigned int i=0; i<coins.vout.size(); i++) { const CTxOut &out = coins.vout[i]; if (!out.IsNull()) { |