aboutsummaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorAndrew Chow <github@achow101.com>2023-07-25 18:03:03 -0400
committerAndrew Chow <github@achow101.com>2023-07-25 18:13:16 -0400
commit1ed8a0f8d26439820554213f8ffead2d5d8ea864 (patch)
treef4bf4547573ecafcb644ea983521bdec578ee817 /doc
parente35fb7bc48d360585b80d0c7f89ac5087c1d405e (diff)
parent6960c81cbfa6208d4098353e53b313e13a21cb49 (diff)
downloadbitcoin-1ed8a0f8d26439820554213f8ffead2d5d8ea864.tar.xz
Merge bitcoin/bitcoin#28113: kernel: Remove UniValue from kernel library
6960c81cbfa6208d4098353e53b313e13a21cb49 kernel: Remove Univalue from kernel library (TheCharlatan) 10eb3a9faa977371facacee937b2e6dc26f008e0 kernel: Split ParseSighashString (TheCharlatan) Pull request description: Besides the build system changes, this is a mostly move-only change for moving the few UniValue-related functions out of kernel files. UniValue is not required by any of the kernel components and a JSON library should not need to be part of a consensus library. ACKs for top commit: achow101: ACK 6960c81cbfa6208d4098353e53b313e13a21cb49 theuni: Re-ACK 6960c81cbfa6208d4098353e53b313e13a21cb49 stickies-v: re-ACK https://github.com/bitcoin/bitcoin/commit/6960c81cbfa6208d4098353e53b313e13a21cb49 Tree-SHA512: d92e4cb4e12134c94b517751bd746d39f9b8da528ec3a1c94aaedcce93274a3bae9277832e8a7c0243c13df0397ca70ae7bbb24ede200018c569f8d81103c1da
Diffstat (limited to 'doc')
-rw-r--r--doc/release-notes-28113.md7
1 files changed, 7 insertions, 0 deletions
diff --git a/doc/release-notes-28113.md b/doc/release-notes-28113.md
new file mode 100644
index 0000000000..c1a3a07b17
--- /dev/null
+++ b/doc/release-notes-28113.md
@@ -0,0 +1,7 @@
+RPC Wallet
+----------
+
+- The `signrawtransactionwithkey`, `signrawtransactionwithwallet`,
+ `walletprocesspsbt` and `descriptorprocesspsbt` calls now return more
+ specific RPC_INVALID_PARAMETER instead of RPC_PARSE_ERROR if their
+ sighashtype argument is malformed or not a string.