From 5884f5a4fa936b0b059748c81e0904c83b8328ad Mon Sep 17 00:00:00 2001 From: Sjors Provoost Date: Thu, 25 Jun 2026 14:02:05 +0200 Subject: [PATCH 1/2] wallet: remove experimental warning from send RPCs --- src/wallet/rpc/spend.cpp | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/src/wallet/rpc/spend.cpp b/src/wallet/rpc/spend.cpp index 4524871314e..352340d212b 100644 --- a/src/wallet/rpc/spend.cpp +++ b/src/wallet/rpc/spend.cpp @@ -1183,8 +1183,7 @@ RPCMethod send() { return RPCMethod{ "send", - "EXPERIMENTAL warning: this call may be changed in future releases.\n" - "\nSend a transaction.\n", + "Send a transaction.\n", { {"outputs", RPCArg::Type::ARR, RPCArg::Optional::NO, "The outputs specified as key-value pairs.\n" "Each key may only appear once, i.e. there can only be one 'data' output, and no address may be duplicated.\n" @@ -1306,8 +1305,7 @@ RPCMethod send() RPCMethod sendall() { return RPCMethod{"sendall", - "EXPERIMENTAL warning: this call may be changed in future releases.\n" - "\nSpend the value of all (or specific) confirmed UTXOs and unconfirmed change in the wallet to one or more recipients.\n" + "Spend the value of all (or specific) confirmed UTXOs and unconfirmed change in the wallet to one or more recipients.\n" "Unconfirmed inbound UTXOs and locked UTXOs will not be spent. Sendall will respect the avoid_reuse wallet flag.\n" "If your wallet contains many small inputs, either because it received tiny payments or as a result of accumulating change, consider using `send_max` to exclude inputs that are worth less than the fees needed to spend them.\n", { From 8ebfff0f88bfeee02f72e97049302d6af47a5d38 Mon Sep 17 00:00:00 2001 From: Sjors Provoost Date: Thu, 25 Jun 2026 16:02:19 +0200 Subject: [PATCH 2/2] doc: add send RPC release note --- doc/release-notes-35601.md | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 doc/release-notes-35601.md diff --git a/doc/release-notes-35601.md b/doc/release-notes-35601.md new file mode 100644 index 00000000000..9068f635647 --- /dev/null +++ b/doc/release-notes-35601.md @@ -0,0 +1,4 @@ +Wallet +------ + +The `send` and `sendall` RPCs are no longer marked as experimental. (#35601)