aboutsummaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorAndrew Chow <github@achow101.com>2023-06-16 15:05:44 -0400
committerAndrew Chow <github@achow101.com>2023-06-16 15:11:44 -0400
commitf0758d8a6696657269d9c057e7aa079ffa9e1c16 (patch)
tree5aceddb83fa8d0b7806825ba45f0bbe47e7bbb18 /doc
parent1ecdf6ea8fb6dc1d64f41323a1e337beb174c25b (diff)
parent5524fa00faebfe040f126a4152640f9e9ed572b1 (diff)
downloadbitcoin-f0758d8a6696657269d9c057e7aa079ffa9e1c16.tar.xz
Merge bitcoin/bitcoin#27757: rpc: remove deprecated "warning" field from {create,load,restore,unload}wallet
5524fa00faebfe040f126a4152640f9e9ed572b1 doc: add release note about removal of `deprecatedrpc=walletwarningfield` flag (Sebastian Falbesoner) 5c77db73542fe4c76fd53526ae560d56dde5f830 Restorewallet/createwallet help documentation fixups/improvements (Jon Atack) a00ae31fccba63d5fd409ffb39c1622df2ea3e8c rpc: remove deprecated "warning" field from {create,load,restore,unload}wallet (Sebastian Falbesoner) Pull request description: The "warning" string field for wallet creating/loading RPCs (`createwallet`, `loadwallet`, `unloadwallet` and `restorewallet`) has been deprecated with the configuration option `-deprecatedrpc=walletwarningfield` in PR #27279 (released in v25.0). For the next release v26.0, the field and the configuration option can be removed. ACKs for top commit: achow101: ACK 5524fa00faebfe040f126a4152640f9e9ed572b1 jonatack: ACK 5524fa00faebfe040f126a4152640f9e9ed572b1 Tree-SHA512: 8212f72067d08095304018b8a95d2ebef630004b65123483fbbfb078cc5709c2d825bbc35b16ea5f6b28ae7377347382d7e9afaf7bdbf0575d2c229d970784de
Diffstat (limited to 'doc')
-rw-r--r--doc/release-notes-27757.md8
1 files changed, 8 insertions, 0 deletions
diff --git a/doc/release-notes-27757.md b/doc/release-notes-27757.md
new file mode 100644
index 0000000000..fb6aaa01a5
--- /dev/null
+++ b/doc/release-notes-27757.md
@@ -0,0 +1,8 @@
+Wallet
+------
+
+- The `deprecatedrpc=walletwarningfield` configuration option has been removed.
+ The `createwallet`, `loadwallet`, `restorewallet` and `unloadwallet` RPCs no
+ longer return the "warning" string field. The same information is provided
+ through the "warnings" field added in v25.0, which returns a JSON array of
+ strings. The "warning" string field was deprecated also in v25.0. (#27757)