diff options
| author | Wladimir J. van der Laan <[email protected]> | 2017-06-06 11:26:28 +0200 |
|---|---|---|
| committer | Wladimir J. van der Laan <[email protected]> | 2017-06-06 11:46:31 +0200 |
| commit | 16f6c98fa8ee3f5bf02db470d698b1c4c50fc431 (patch) | |
| tree | ee3f279c6730e9b0286eb830c82a4695c57b351d /doc | |
| parent | Merge #10463: Names: BIP9 vs versionbits (diff) | |
| parent | Replace bytes_serialized with bogosize (diff) | |
| download | discoin-16f6c98fa8ee3f5bf02db470d698b1c4c50fc431.tar.xz discoin-16f6c98fa8ee3f5bf02db470d698b1c4c50fc431.zip | |
Merge #10426: Replace bytes_serialized with bogosize
8b22af3 Replace bytes_serialized with bogosize (Pieter Wuille)
Tree-SHA512: e70a981bbb977329f9e324c45f9a1346ec9aacfbbad5474e608cdd1f852257502bb7db8003fd578260a609e45d1a9cf87ce96df9c4187d92d50f60a209e232ce
Diffstat (limited to 'doc')
| -rw-r--r-- | doc/release-notes.md | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/doc/release-notes.md b/doc/release-notes.md index 075c7c391..a13ede2dd 100644 --- a/doc/release-notes.md +++ b/doc/release-notes.md @@ -42,9 +42,15 @@ Low-level RPC changes - The `gettxoutsetinfo` RPC reports `hash_serialized_2` instead of `hash_serialized`, which does not commit to the transaction versions of unspent outputs, but does commit to the height and coinbase information. + - The `gettxoutsetinfo` response now contains `disk_size` and `bogosize` instead of + `bytes_serialized`. The first is a more accurate estimate of actual disk usage, but + is not deterministic. The second is unrelated to disk usage, but is a + database-independent metric of UTXO set size: it counts every UTXO entry as 50 + the + length of its scriptPubKey. - The `getutxos` REST path no longer reports the `txvers` field in JSON format, and always reports 0 for transaction versions in the binary format + - Error codes have been updated to be more accurate for the following error cases: - `getblock` now returns RPC_MISC_ERROR if the block can't be found on disk (for example if the block has been pruned). Previously returned RPC_INTERNAL_ERROR. |