diff options
author | fanquake <fanquake@gmail.com> | 2021-10-03 11:14:06 +0800 |
---|---|---|
committer | fanquake <fanquake@gmail.com> | 2021-10-03 11:22:45 +0800 |
commit | 446b706696451ae1a66ac416f347d734c5741d7c (patch) | |
tree | 48a86a5111a6b0ac0b4a3708a8cb2bdb0b828fb9 | |
parent | 35a31d5f7e9cd71a210c1ed10abc9d772ff36049 (diff) | |
parent | fad5a185488ff2937071860877df00aae52548f1 (diff) |
Merge bitcoin/bitcoin#23151: doc: Combine 23.0 release notes
fad5a185488ff2937071860877df00aae52548f1 doc: Combine 23.0 release notes (MarcoFalke)
Pull request description:
`doc/release-notes-remove-rescan.md` didn't include a `(#pull_nr)`, so fix that and also combine the notes while touching them.
ACKs for top commit:
shaavan:
ACK fad5a185488ff2937071860877df00aae52548f1
fanquake:
ACK fad5a185488ff2937071860877df00aae52548f1
Tree-SHA512: 1528619f056197d410d0fa5415742ae303fd21b236f220451614f9ec07668a4f34a76298907378b2c4b25a405cff8cd1d205024d2f3d8f207d11900a607f765f
-rw-r--r-- | doc/release-notes-12677.md | 8 | ||||
-rw-r--r-- | doc/release-notes-23065.md | 15 | ||||
-rw-r--r-- | doc/release-notes-remove-rescan.md | 9 | ||||
-rw-r--r-- | doc/release-notes.md | 18 |
4 files changed, 18 insertions, 32 deletions
diff --git a/doc/release-notes-12677.md b/doc/release-notes-12677.md deleted file mode 100644 index d6fea9eae7..0000000000 --- a/doc/release-notes-12677.md +++ /dev/null @@ -1,8 +0,0 @@ -Notable changes -=============== - -Updated RPCs ------------- - -- `listunspent` now includes `ancestorcount`, `ancestorsize`, and -`ancestorfees` for each transaction output that is still in the mempool. diff --git a/doc/release-notes-23065.md b/doc/release-notes-23065.md deleted file mode 100644 index 6ec002b2df..0000000000 --- a/doc/release-notes-23065.md +++ /dev/null @@ -1,15 +0,0 @@ -Notable changes -=============== - -Updated RPCs ------------- - -- `lockunspent` now optionally takes a third parameter, `persistent`, which -causes the lock to be written persistently to the wallet database. This -allows UTXOs to remain locked even after node restarts or crashes. - -GUI changes ------------ - -- UTXOs which are locked via the GUI are now stored persistently in the -wallet database, so are not lost on node shutdown or crash.
\ No newline at end of file diff --git a/doc/release-notes-remove-rescan.md b/doc/release-notes-remove-rescan.md deleted file mode 100644 index fcbe7e6a82..0000000000 --- a/doc/release-notes-remove-rescan.md +++ /dev/null @@ -1,9 +0,0 @@ -Notable changes -=============== - -Rescan startup parameter removed --------------------------------- - -The `-rescan` startup parameter has been removed. Wallets which require -rescanning due to corruption will still be rescanned on startup. -Otherwise, please use the `rescanblockchain` RPC to trigger a rescan.
\ No newline at end of file diff --git a/doc/release-notes.md b/doc/release-notes.md index a0c1ed3b31..81e79dd3a9 100644 --- a/doc/release-notes.md +++ b/doc/release-notes.md @@ -61,6 +61,13 @@ P2P and network changes They will become eligible for address gossip after sending an ADDR, ADDRV2, or GETADDR message. (#21528) +Rescan startup parameter removed +-------------------------------- + +The `-rescan` startup parameter has been removed. Wallets which require +rescanning due to corruption will still be rescanned on startup. +Otherwise, please use the `rescanblockchain` RPC to trigger a rescan. (#23123) + Updated RPCs ------------ @@ -70,6 +77,14 @@ Updated RPCs `/rest/block` no longer return the `addresses` and `reqSigs` fields, which were previously deprecated in 22.0. (#22650) +- `listunspent` now includes `ancestorcount`, `ancestorsize`, and + `ancestorfees` for each transaction output that is still in the mempool. + (#12677) + +- `lockunspent` now optionally takes a third parameter, `persistent`, which + causes the lock to be written persistently to the wallet database. This + allows UTXOs to remain locked even after node restarts or crashes. (#23065) + New RPCs -------- @@ -113,6 +128,9 @@ Wallet GUI changes ----------- +- UTXOs which are locked via the GUI are now stored persistently in the + wallet database, so are not lost on node shutdown or crash. (#23065) + Low-level changes ================= |