@@ -813,14 +813,14 @@ static UniValue sendmany(const JSONRPCRequest& request)
813
813
HelpRequiringPassphrase (pwallet) + " \n " ,
814
814
{
815
815
{" dummy" , RPCArg::Type::STR, RPCArg::Optional::NO, " Must be set to \"\" for backwards compatibility." , " \"\" " },
816
- {" amounts" , RPCArg::Type::OBJ, RPCArg::Optional::NO, " A json object with addresses and amounts" ,
816
+ {" amounts" , RPCArg::Type::OBJ, RPCArg::Optional::NO, " The addresses and amounts" ,
817
817
{
818
818
{" 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" },
819
819
},
820
820
},
821
821
{" minconf" , RPCArg::Type::NUM, RPCArg::Optional::OMITTED_NAMED_ARG, " Ignored dummy value" },
822
822
{" comment" , RPCArg::Type::STR, RPCArg::Optional::OMITTED_NAMED_ARG, " A comment" },
823
- {" subtractfeefrom" , RPCArg::Type::ARR, RPCArg::Optional::OMITTED_NAMED_ARG, " A json array with addresses.\n "
823
+ {" subtractfeefrom" , RPCArg::Type::ARR, RPCArg::Optional::OMITTED_NAMED_ARG, " The addresses.\n "
824
824
" The fee will be equally deducted from the amount of each selected address.\n "
825
825
" Those recipients will receive less bitcoins than you enter in their corresponding amount field.\n "
826
826
" If no addresses are specified here, the sender pays the fee." ,
@@ -951,7 +951,7 @@ static UniValue addmultisigaddress(const JSONRPCRequest& request)
951
951
" If 'label' is specified, assign address to that label.\n " ,
952
952
{
953
953
{" nrequired" , RPCArg::Type::NUM, RPCArg::Optional::NO, " The number of required signatures out of the n keys or addresses." },
954
- {" keys" , RPCArg::Type::ARR, RPCArg::Optional::NO, " A json array of bitcoin addresses or hex-encoded public keys" ,
954
+ {" keys" , RPCArg::Type::ARR, RPCArg::Optional::NO, " The bitcoin addresses or hex-encoded public keys" ,
955
955
{
956
956
{" key" , RPCArg::Type::STR, RPCArg::Optional::OMITTED, " bitcoin address or hex-encoded public key" },
957
957
},
@@ -2144,7 +2144,7 @@ static UniValue lockunspent(const JSONRPCRequest& request)
2144
2144
" Also see the listunspent call\n " ,
2145
2145
{
2146
2146
{" unlock" , RPCArg::Type::BOOL, RPCArg::Optional::NO, " Whether to unlock (true) or lock (false) the specified transactions" },
2147
- {" transactions" , RPCArg::Type::ARR, /* default */ " empty array" , " A json array of objects. Each object the txid (string) vout (numeric)." ,
2147
+ {" transactions" , RPCArg::Type::ARR, /* default */ " empty array" , " The transaction outputs and within each, the txid (string) vout (numeric)." ,
2148
2148
{
2149
2149
{" " , RPCArg::Type::OBJ, RPCArg::Optional::OMITTED, " " ,
2150
2150
{
@@ -2817,7 +2817,7 @@ static UniValue listunspent(const JSONRPCRequest& request)
2817
2817
{
2818
2818
{" minconf" , RPCArg::Type::NUM, /* default */ " 1" , " The minimum confirmations to filter" },
2819
2819
{" maxconf" , RPCArg::Type::NUM, /* default */ " 9999999" , " The maximum confirmations to filter" },
2820
- {" addresses" , RPCArg::Type::ARR, /* default */ " empty array" , " A json array of bitcoin addresses to filter" ,
2820
+ {" addresses" , RPCArg::Type::ARR, /* default */ " empty array" , " The bitcoin addresses to filter" ,
2821
2821
{
2822
2822
{" address" , RPCArg::Type::STR, RPCArg::Optional::OMITTED, " bitcoin address" },
2823
2823
},
@@ -3167,7 +3167,7 @@ static UniValue fundrawtransaction(const JSONRPCRequest& request)
3167
3167
" e.g. with 'importpubkey' or 'importmulti' with the 'pubkeys' or 'desc' field." },
3168
3168
{" lockUnspents" , RPCArg::Type::BOOL, /* default */ " false" , " Lock selected unspent outputs" },
3169
3169
{" feeRate" , RPCArg::Type::AMOUNT, /* default */ " not set: makes wallet determine the fee" , " Set a specific fee rate in " + CURRENCY_UNIT + " /kB" },
3170
- {" subtractFeeFromOutputs" , RPCArg::Type::ARR, /* default */ " empty array" , " A json array of integers.\n "
3170
+ {" subtractFeeFromOutputs" , RPCArg::Type::ARR, /* default */ " empty array" , " The integers.\n "
3171
3171
" The fee will be equally deducted from the amount of each specified output.\n "
3172
3172
" Those recipients will receive less bitcoins than you enter in their corresponding amount field.\n "
3173
3173
" If no outputs are specified here, the sender pays the fee." ,
@@ -3250,7 +3250,7 @@ UniValue signrawtransactionwithwallet(const JSONRPCRequest& request)
3250
3250
HelpRequiringPassphrase (pwallet) + " \n " ,
3251
3251
{
3252
3252
{" hexstring" , RPCArg::Type::STR, RPCArg::Optional::NO, " The transaction hex string" },
3253
- {" prevtxs" , RPCArg::Type::ARR, RPCArg::Optional::OMITTED_NAMED_ARG, " A json array of previous dependent transaction outputs" ,
3253
+ {" prevtxs" , RPCArg::Type::ARR, RPCArg::Optional::OMITTED_NAMED_ARG, " The previous dependent transaction outputs" ,
3254
3254
{
3255
3255
{" " , RPCArg::Type::OBJ, RPCArg::Optional::OMITTED, " " ,
3256
3256
{
@@ -4149,7 +4149,7 @@ UniValue walletcreatefundedpsbt(const JSONRPCRequest& request)
4149
4149
" \n Creates and funds a transaction in the Partially Signed Transaction format. Inputs will be added if supplied inputs are not enough\n "
4150
4150
" Implements the Creator and Updater roles.\n " ,
4151
4151
{
4152
- {" inputs" , RPCArg::Type::ARR, RPCArg::Optional::NO, " A json array of json objects " ,
4152
+ {" inputs" , RPCArg::Type::ARR, RPCArg::Optional::NO, " The inputs " ,
4153
4153
{
4154
4154
{" " , RPCArg::Type::OBJ, RPCArg::Optional::OMITTED, " " ,
4155
4155
{
@@ -4160,7 +4160,7 @@ UniValue walletcreatefundedpsbt(const JSONRPCRequest& request)
4160
4160
},
4161
4161
},
4162
4162
},
4163
- {" outputs" , RPCArg::Type::ARR, RPCArg::Optional::NO, " a json array with outputs (key-value pairs), where none of the keys are duplicated.\n "
4163
+ {" outputs" , RPCArg::Type::ARR, RPCArg::Optional::NO, " The outputs (key-value pairs), where none of the keys are duplicated.\n "
4164
4164
" That is, each address can only appear once and there can only be one 'data' object.\n "
4165
4165
" For compatibility reasons, a dictionary, which holds the key-value pairs directly, is also\n "
4166
4166
" accepted as second parameter." ,
@@ -4186,7 +4186,7 @@ UniValue walletcreatefundedpsbt(const JSONRPCRequest& request)
4186
4186
{" includeWatching" , RPCArg::Type::BOOL, /* default */ " true for watch-only wallets, otherwise false" , " Also select inputs which are watch only" },
4187
4187
{" lockUnspents" , RPCArg::Type::BOOL, /* default */ " false" , " Lock selected unspent outputs" },
4188
4188
{" feeRate" , RPCArg::Type::AMOUNT, /* default */ " not set: makes wallet determine the fee" , " Set a specific fee rate in " + CURRENCY_UNIT + " /kB" },
4189
- {" subtractFeeFromOutputs" , RPCArg::Type::ARR, /* default */ " empty array" , " A json array of integers .\n "
4189
+ {" subtractFeeFromOutputs" , RPCArg::Type::ARR, /* default */ " empty array" , " The outputs to subtract the fee from .\n "
4190
4190
" The fee will be equally deducted from the amount of each specified output.\n "
4191
4191
" Those recipients will receive less bitcoins than you enter in their corresponding amount field.\n "
4192
4192
" If no outputs are specified here, the sender pays the fee." ,
0 commit comments