aboutsummaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorWladimir J. van der Laan <laanwj@gmail.com>2018-11-10 12:45:39 +0100
committerWladimir J. van der Laan <laanwj@gmail.com>2018-11-10 12:45:44 +0100
commit5150accdd2a7c7f0edf964d56bd7d34b5f740cdc (patch)
tree3f85d39b7547cdfef45bf0da99fc0629b1ec81e2 /doc
parent1e49fe450dbb0c258776526dba3ee583461d42ff (diff)
parent89306ab0df93bfdf5630910bc20b1eccb7379172 (diff)
downloadbitcoin-5150accdd2a7c7f0edf964d56bd7d34b5f740cdc.tar.xz
Merge #14441: [wallet] Backport(0.17): Restore ability to list incoming transactions by label
89306ab0df93bfdf5630910bc20b1eccb7379172 [wallet] Restore ability to list incoming transactions by label (Russell Yanofsky) Pull request description: Backport of PR #14411 to v0.17. This change partially reverts #13075 and #14023. Fixes #14382 Tree-SHA512: 1f8300e1a79e826cd706561265b8788deef505fa510be1a76ed9a62e5fca37cf6a741423ac0e5de2a36d6e8b9f25f141885455aacacbbf6474814e6eae406a27
Diffstat (limited to 'doc')
-rw-r--r--doc/release-notes.md18
1 files changed, 17 insertions, 1 deletions
diff --git a/doc/release-notes.md b/doc/release-notes.md
index 7f4ece80ad..ea9a45347d 100644
--- a/doc/release-notes.md
+++ b/doc/release-notes.md
@@ -71,7 +71,23 @@ Notable changes
0.17.x change log
=================
-...
+`listtransactions` label support
+--------------------------------
+
+The `listtransactions` RPC `account` parameter which was deprecated in 0.17.0
+and renamed to `dummy` has been un-deprecated and renamed again to `label`.
+
+When bitcoin is configured with the `-deprecatedrpc=accounts` setting, specifying
+a label/account/dummy argument will return both outgoing and incoming
+transactions. Without the `-deprecatedrpc=accounts` setting, it will only return
+incoming transactions (because it used to be possible to create transactions
+spending from specific accounts, but this is no longer possible with labels).
+
+When `-deprecatedrpc=accounts` is set, it's possible to pass the empty string ""
+to list transactions that don't have any label. Without
+`-deprecatedrpc=accounts`, passing the empty string is an error because returning
+only non-labeled transactions is not generally useful behavior and can cause
+confusion.
Credits
=======