mirror of
https://github.com/bitcoin/bitcoin.git
synced 2026-07-27 08:38:45 +02:00
Merge bitcoin/bitcoin#35601: wallet: remove experimental warning from send and sendall
8ebfff0f88doc: add send RPC release note (Sjors Provoost)5884f5a4fawallet: remove experimental warning from send RPCs (Sjors Provoost) Pull request description: The `send` RPC was introduced in v21 an initially marked experimental. The `sendall` RPC was added in v24, based on `send` and also marked experimental. I'm not aware of any proposed breaking changes, except #35433 which follows the regular deprecation flow. Time to mark them as no longer experimental. ACKs for top commit: w0xlt: ACK8ebfff0f88achow101: ACK8ebfff0f88polespinasa: ACK8ebfff0f88pablomartin4btc: ACK8ebfff0f88Tree-SHA512: beb5321adaf871157bda396c8e5740daff95ffe342416914340ae4197accebe60236032d1329876b42405437b99f59079a56ec1e5ac592b753031ba2ebd36cfb
This commit is contained in:
4
doc/release-notes-35601.md
Normal file
4
doc/release-notes-35601.md
Normal file
@@ -0,0 +1,4 @@
|
||||
Wallet
|
||||
------
|
||||
|
||||
The `send` and `sendall` RPCs are no longer marked as experimental. (#35601)
|
||||
@@ -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",
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user