@@ -820,14 +820,14 @@ static UniValue sendmany(const JSONRPCRequest& request)
820
820
HelpRequiringPassphrase (pwallet) + " \n " ,
821
821
{
822
822
{" dummy" , RPCArg::Type::STR, RPCArg::Optional::NO, " Must be set to \"\" for backwards compatibility." , " \"\" " },
823
- {" amounts" , RPCArg::Type::OBJ, RPCArg::Optional::NO, " A json object with addresses and amounts" ,
823
+ {" amounts" , RPCArg::Type::OBJ, RPCArg::Optional::NO, " The addresses and amounts" ,
824
824
{
825
825
{" address" , RPCArg::Type::AMOUNT, RPCArg::Optional::NO, " The bitcoin address is the key, the numeric amount (can be string) in " + CURRENCY_UNIT + " is the value" },
826
826
},
827
827
},
828
828
{" minconf" , RPCArg::Type::NUM, RPCArg::Optional::OMITTED_NAMED_ARG, " Ignored dummy value" },
829
829
{" comment" , RPCArg::Type::STR, RPCArg::Optional::OMITTED_NAMED_ARG, " A comment" },
830
- {" subtractfeefrom" , RPCArg::Type::ARR, RPCArg::Optional::OMITTED_NAMED_ARG, " A json array with addresses.\n "
830
+ {" subtractfeefrom" , RPCArg::Type::ARR, RPCArg::Optional::OMITTED_NAMED_ARG, " The addresses.\n "
831
831
" The fee will be equally deducted from the amount of each selected address.\n "
832
832
" Those recipients will receive less bitcoins than you enter in their corresponding amount field.\n "
833
833
" If no addresses are specified here, the sender pays the fee." ,
@@ -958,7 +958,7 @@ static UniValue addmultisigaddress(const JSONRPCRequest& request)
958
958
" If 'label' is specified, assign address to that label.\n " ,
959
959
{
960
960
{" nrequired" , RPCArg::Type::NUM, RPCArg::Optional::NO, " The number of required signatures out of the n keys or addresses." },
961
- {" keys" , RPCArg::Type::ARR, RPCArg::Optional::NO, " A json array of bitcoin addresses or hex-encoded public keys" ,
961
+ {" keys" , RPCArg::Type::ARR, RPCArg::Optional::NO, " The bitcoin addresses or hex-encoded public keys" ,
962
962
{
963
963
{" key" , RPCArg::Type::STR, RPCArg::Optional::OMITTED, " bitcoin address or hex-encoded public key" },
964
964
},
@@ -2139,7 +2139,7 @@ static UniValue lockunspent(const JSONRPCRequest& request)
2139
2139
" Also see the listunspent call\n " ,
2140
2140
{
2141
2141
{" unlock" , RPCArg::Type::BOOL, RPCArg::Optional::NO, " Whether to unlock (true) or lock (false) the specified transactions" },
2142
- {" transactions" , RPCArg::Type::ARR, /* default */ " empty array" , " A json array of objects. Each object the txid (string) vout (numeric)." ,
2142
+ {" transactions" , RPCArg::Type::ARR, /* default */ " empty array" , " The transaction outputs and within each, the txid (string) vout (numeric)." ,
2143
2143
{
2144
2144
{" " , RPCArg::Type::OBJ, RPCArg::Optional::OMITTED, " " ,
2145
2145
{
@@ -2800,7 +2800,7 @@ static UniValue listunspent(const JSONRPCRequest& request)
2800
2800
{
2801
2801
{" minconf" , RPCArg::Type::NUM, /* default */ " 1" , " The minimum confirmations to filter" },
2802
2802
{" maxconf" , RPCArg::Type::NUM, /* default */ " 9999999" , " The maximum confirmations to filter" },
2803
- {" addresses" , RPCArg::Type::ARR, /* default */ " empty array" , " A json array of bitcoin addresses to filter" ,
2803
+ {" addresses" , RPCArg::Type::ARR, /* default */ " empty array" , " The bitcoin addresses to filter" ,
2804
2804
{
2805
2805
{" address" , RPCArg::Type::STR, RPCArg::Optional::OMITTED, " bitcoin address" },
2806
2806
},
@@ -3149,7 +3149,7 @@ static UniValue fundrawtransaction(const JSONRPCRequest& request)
3149
3149
" e.g. with 'importpubkey' or 'importmulti' with the 'pubkeys' or 'desc' field." },
3150
3150
{" lockUnspents" , RPCArg::Type::BOOL, /* default */ " false" , " Lock selected unspent outputs" },
3151
3151
{" feeRate" , RPCArg::Type::AMOUNT, /* default */ " not set: makes wallet determine the fee" , " Set a specific fee rate in " + CURRENCY_UNIT + " /kB" },
3152
- {" subtractFeeFromOutputs" , RPCArg::Type::ARR, /* default */ " empty array" , " A json array of integers.\n "
3152
+ {" subtractFeeFromOutputs" , RPCArg::Type::ARR, /* default */ " empty array" , " The integers.\n "
3153
3153
" The fee will be equally deducted from the amount of each specified output.\n "
3154
3154
" Those recipients will receive less bitcoins than you enter in their corresponding amount field.\n "
3155
3155
" If no outputs are specified here, the sender pays the fee." ,
@@ -3231,7 +3231,7 @@ UniValue signrawtransactionwithwallet(const JSONRPCRequest& request)
3231
3231
HelpRequiringPassphrase (pwallet) + " \n " ,
3232
3232
{
3233
3233
{" hexstring" , RPCArg::Type::STR, RPCArg::Optional::NO, " The transaction hex string" },
3234
- {" prevtxs" , RPCArg::Type::ARR, RPCArg::Optional::OMITTED_NAMED_ARG, " A json array of previous dependent transaction outputs" ,
3234
+ {" prevtxs" , RPCArg::Type::ARR, RPCArg::Optional::OMITTED_NAMED_ARG, " The previous dependent transaction outputs" ,
3235
3235
{
3236
3236
{" " , RPCArg::Type::OBJ, RPCArg::Optional::OMITTED, " " ,
3237
3237
{
@@ -4130,7 +4130,7 @@ UniValue walletcreatefundedpsbt(const JSONRPCRequest& request)
4130
4130
" \n Creates and funds a transaction in the Partially Signed Transaction format. Inputs will be added if supplied inputs are not enough\n "
4131
4131
" Implements the Creator and Updater roles.\n " ,
4132
4132
{
4133
- {" inputs" , RPCArg::Type::ARR, RPCArg::Optional::NO, " A json array of json objects " ,
4133
+ {" inputs" , RPCArg::Type::ARR, RPCArg::Optional::NO, " The inputs " ,
4134
4134
{
4135
4135
{" " , RPCArg::Type::OBJ, RPCArg::Optional::OMITTED, " " ,
4136
4136
{
@@ -4141,7 +4141,7 @@ UniValue walletcreatefundedpsbt(const JSONRPCRequest& request)
4141
4141
},
4142
4142
},
4143
4143
},
4144
- {" outputs" , RPCArg::Type::ARR, RPCArg::Optional::NO, " a json array with outputs (key-value pairs), where none of the keys are duplicated.\n "
4144
+ {" outputs" , RPCArg::Type::ARR, RPCArg::Optional::NO, " The outputs (key-value pairs), where none of the keys are duplicated.\n "
4145
4145
" That is, each address can only appear once and there can only be one 'data' object.\n "
4146
4146
" For compatibility reasons, a dictionary, which holds the key-value pairs directly, is also\n "
4147
4147
" accepted as second parameter." ,
@@ -4167,7 +4167,7 @@ UniValue walletcreatefundedpsbt(const JSONRPCRequest& request)
4167
4167
{" includeWatching" , RPCArg::Type::BOOL, /* default */ " true for watch-only wallets, otherwise false" , " Also select inputs which are watch only" },
4168
4168
{" lockUnspents" , RPCArg::Type::BOOL, /* default */ " false" , " Lock selected unspent outputs" },
4169
4169
{" feeRate" , RPCArg::Type::AMOUNT, /* default */ " not set: makes wallet determine the fee" , " Set a specific fee rate in " + CURRENCY_UNIT + " /kB" },
4170
- {" subtractFeeFromOutputs" , RPCArg::Type::ARR, /* default */ " empty array" , " A json array of integers .\n "
4170
+ {" subtractFeeFromOutputs" , RPCArg::Type::ARR, /* default */ " empty array" , " The outputs to subtract the fee from .\n "
4171
4171
" The fee will be equally deducted from the amount of each specified output.\n "
4172
4172
" Those recipients will receive less bitcoins than you enter in their corresponding amount field.\n "
4173
4173
" If no outputs are specified here, the sender pays the fee." ,
0 commit comments