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) 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", {