From 94839202bbbf83c6026a7a8467dea173d7847fd8 Mon Sep 17 00:00:00 2001 From: Konstantin Akimov Date: Sun, 5 Oct 2025 03:03:03 +0700 Subject: [PATCH 1/2] fix: reference to repo dashcore-detached-sigs to dash-detached-sigs --- doc/release-process.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/release-process.md b/doc/release-process.md index f4fd46e8443d..2390badea11f 100644 --- a/doc/release-process.md +++ b/doc/release-process.md @@ -148,7 +148,7 @@ However if this is done, once the release has been tagged in the dash-detached-s ### Windows and macOS codesigners only: Commit the detached codesign payloads ```sh -pushd ~/dashcore-detached-sigs +pushd ~/dash-detached-sigs # checkout the appropriate branch for this release series git checkout "v${VERSION}" rm -rf * From a60cc1b3e09934335c3634d55102165162cf2e8a Mon Sep 17 00:00:00 2001 From: Konstantin Akimov Date: Sun, 5 Oct 2025 03:12:24 +0700 Subject: [PATCH 2/2] fix: annotation for sendrawtransaction rpc (VBOOL for deprecated IS) --- src/rpc/mempool.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/rpc/mempool.cpp b/src/rpc/mempool.cpp index 165ea861df88..75512672c6fa 100644 --- a/src/rpc/mempool.cpp +++ b/src/rpc/mempool.cpp @@ -58,7 +58,8 @@ RPCHelpMan sendrawtransaction() RPCTypeCheck(request.params, { UniValue::VSTR, UniValueType(), // VNUM or VSTR, checked inside AmountFromValue() - UniValue::VBOOL + UniValue::VBOOL, + UniValue::VBOOL, }); CMutableTransaction mtx;