mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-02-02 09:46:52 -05:00
Mark send RPC experimental
This commit is contained in:
parent
be3af4f310
commit
efc9b85e6f
2 changed files with 4 additions and 2 deletions
|
@ -1,5 +1,6 @@
|
|||
RPC
|
||||
---
|
||||
- A new `send` RPC with similar syntax to `walletcreatefundedpsbt`, including
|
||||
support for coin selection and a custom fee rate. Using the new `send` method
|
||||
is encouraged: `sendmany` and `sendtoaddress` may be deprecated in a future release.
|
||||
support for coin selection and a custom fee rate. The `send` RPC is experimental
|
||||
and may change in subsequent releases. Using it is encouraged once it's no
|
||||
longer experimental: `sendmany` and `sendtoaddress` may be deprecated in a future release.
|
||||
|
|
|
@ -3874,6 +3874,7 @@ static UniValue listlabels(const JSONRPCRequest& request)
|
|||
static RPCHelpMan send()
|
||||
{
|
||||
return RPCHelpMan{"send",
|
||||
"\nEXPERIMENTAL warning: this call may be changed in future releases.\n"
|
||||
"\nSend a transaction.\n",
|
||||
{
|
||||
{"outputs", RPCArg::Type::ARR, RPCArg::Optional::NO, "a json array with outputs (key-value pairs), where none of the keys are duplicated.\n"
|
||||
|
|
Loading…
Add table
Reference in a new issue