@@ -419,12 +419,12 @@ static RPCHelpMan sendtoaddress()
419
419
{" address" , RPCArg::Type::STR, RPCArg::Optional::NO, " The Dash address to send to." },
420
420
{" amount" , RPCArg::Type::AMOUNT, RPCArg::Optional::NO, " The amount in " + CURRENCY_UNIT + " to send. eg 0.1" },
421
421
{" comment" , RPCArg::Type::STR, RPCArg::Optional::OMITTED_NAMED_ARG, " A comment used to store what the transaction is for.\n "
422
- " This is not part of the transaction, just kept in your wallet." },
422
+ " This is not part of the transaction, just kept in your wallet." },
423
423
{" comment_to" , RPCArg::Type::STR, RPCArg::Optional::OMITTED_NAMED_ARG, " A comment to store the name of the person or organization\n "
424
- " to which you're sending the transaction. This is not part of the \n "
425
- " transaction, just kept in your wallet." },
424
+ " to which you're sending the transaction. This is not part of the \n "
425
+ " transaction, just kept in your wallet." },
426
426
{" subtractfeefromamount" , RPCArg::Type::BOOL, /* default */ " false" , " The fee will be deducted from the amount being sent.\n "
427
- " The recipient will receive less amount of Dash than you enter in the amount field." },
427
+ " The recipient will receive less amount of Dash than you enter in the amount field." },
428
428
{" use_is" , RPCArg::Type::BOOL, /* default */ " false" , " Deprecated and ignored" },
429
429
{" use_cj" , RPCArg::Type::BOOL, /* default */ " false" , " Use CoinJoin funds only" },
430
430
{" conf_target" , RPCArg::Type::NUM, /* default */ " wallet default" , " Confirmation target (in blocks), or fee rate (for " + CURRENCY_UNIT + " /kB or " + CURRENCY_ATOM + " /B estimate modes)" },
@@ -923,9 +923,9 @@ static RPCHelpMan sendmany()
923
923
{" addlocked" , RPCArg::Type::BOOL, RPCArg::Optional::OMITTED_NAMED_ARG, " Ignored dummy value" },
924
924
{" comment" , RPCArg::Type::STR, RPCArg::Optional::OMITTED_NAMED_ARG, " A comment" },
925
925
{" subtractfeefrom" , RPCArg::Type::ARR, RPCArg::Optional::OMITTED_NAMED_ARG, " The addresses.\n "
926
- " The fee will be equally deducted from the amount of each selected address.\n "
927
- " Those recipients will receive less Dash than you enter in their corresponding amount field.\n "
928
- " If no addresses are specified here, the sender pays the fee." ,
926
+ " The fee will be equally deducted from the amount of each selected address.\n "
927
+ " Those recipients will receive less Dash than you enter in their corresponding amount field.\n "
928
+ " If no addresses are specified here, the sender pays the fee." ,
929
929
{
930
930
{" address" , RPCArg::Type::STR, RPCArg::Optional::OMITTED, " Subtract fee from this address" },
931
931
},
@@ -939,7 +939,7 @@ static RPCHelpMan sendmany()
939
939
},
940
940
{
941
941
RPCResult{" if verbose is not set or set to false" ,
942
- RPCResult::Type::STR_HEX, " txid" , " The transaction id for the send. Only 1 transaction is created regardless of\n "
942
+ RPCResult::Type::STR_HEX, " txid" , " The transaction id for the send. Only 1 transaction is created regardless of\n "
943
943
" the number of addresses."
944
944
},
945
945
RPCResult{" if verbose is set to true" ,
@@ -1582,7 +1582,7 @@ static RPCHelpMan listsinceblock()
1582
1582
{" target_confirmations" , RPCArg::Type::NUM, /* default */ " 1" , " Return the nth block hash from the main chain. e.g. 1 would mean the best block hash. Note: this is not used as a filter, but only affects [lastblock] in the return value" },
1583
1583
{" include_watchonly" , RPCArg::Type::BOOL, /* default */ " true for watch-only wallets, otherwise false" , " Include transactions to watch-only addresses (see 'importaddress')" },
1584
1584
{" include_removed" , RPCArg::Type::BOOL, /* default */ " true" , " Show transactions that were removed due to a reorg in the \" removed\" array\n "
1585
- " (not guaranteed to work on pruned nodes)" },
1585
+ " (not guaranteed to work on pruned nodes)" },
1586
1586
},
1587
1587
RPCResult{
1588
1588
RPCResult::Type::OBJ, " " , " " ,
@@ -3121,16 +3121,16 @@ static RPCHelpMan listunspent()
3121
3121
},
3122
3122
},
3123
3123
{" include_unsafe" , RPCArg::Type::BOOL, /* default */ " true" , " Include outputs that are not safe to spend\n "
3124
- " See description of \" safe\" attribute below." },
3124
+ " See description of \" safe\" attribute below." },
3125
3125
{" query_options" , RPCArg::Type::OBJ, RPCArg::Optional::OMITTED_NAMED_ARG, " JSON with query options" ,
3126
3126
{
3127
3127
{" minimumAmount" , RPCArg::Type::AMOUNT, /* default */ " 0" , " Minimum value of each UTXO in " + CURRENCY_UNIT + " " },
3128
3128
{" maximumAmount" , RPCArg::Type::AMOUNT, /* default */ " unlimited" , " Maximum value of each UTXO in " + CURRENCY_UNIT + " " },
3129
3129
{" maximumCount" , RPCArg::Type::NUM, /* default */ " unlimited" , " Maximum number of UTXOs" },
3130
3130
{" minimumSumAmount" , RPCArg::Type::AMOUNT, /* default */ " unlimited" , " Minimum sum value of all UTXOs in " + CURRENCY_UNIT + " " },
3131
3131
{" coinType" , RPCArg::Type::NUM, /* default */ " 0" , " Filter coinTypes as follows:\n "
3132
- " 0=ALL_COINS, 1=ONLY_FULLY_MIXED, 2=ONLY_READY_TO_MIX, 3=ONLY_NONDENOMINATED,\n "
3133
- " 4=ONLY_MASTERNODE_COLLATERAL, 5=ONLY_COINJOIN_COLLATERAL" },
3132
+ " 0=ALL_COINS, 1=ONLY_FULLY_MIXED, 2=ONLY_READY_TO_MIX, 3=ONLY_NONDENOMINATED,\n "
3133
+ " 4=ONLY_MASTERNODE_COLLATERAL, 5=ONLY_COINJOIN_COLLATERAL" },
3134
3134
},
3135
3135
" query_options" },
3136
3136
},
@@ -3152,7 +3152,7 @@ static RPCHelpMan listunspent()
3152
3152
{RPCResult::Type::STR, " desc" , " (only when solvable) A descriptor for spending this output" },
3153
3153
{RPCResult::Type::BOOL, " reused" , /* optional*/ true , " (only present if avoid_reuse is set) Whether this output is reused/dirty (sent to an address that was previously spent from)" },
3154
3154
{RPCResult::Type::BOOL, " safe" , " Whether this output is considered safe to spend. Unconfirmed transactions"
3155
- " from outside keys and unconfirmed replacement transactions are considered unsafe\n "
3155
+ " from outside keys and unconfirmed replacement transactions are considered unsafe\n "
3156
3156
" and are not eligible for spending by fundrawtransaction and sendtoaddress." },
3157
3157
{RPCResult::Type::NUM, " coinjoin_rounds" , " The number of CoinJoin rounds" },
3158
3158
}},
@@ -3468,9 +3468,9 @@ static RPCHelpMan fundrawtransaction()
3468
3468
{" lockUnspents" , RPCArg::Type::BOOL, /* default */ " false" , " Lock selected unspent outputs" },
3469
3469
{" feeRate" , RPCArg::Type::AMOUNT, /* default */ " not set: makes wallet determine the fee" , " Set a specific fee rate in " + CURRENCY_UNIT + " /kB" },
3470
3470
{" subtractFeeFromOutputs" , RPCArg::Type::ARR, /* default */ " empty array" , " The integers.\n "
3471
- " The fee will be equally deducted from the amount of each specified output.\n "
3472
- " Those recipients will receive less Dash than you enter in their corresponding amount field.\n "
3473
- " If no outputs are specified here, the sender pays the fee." ,
3471
+ " The fee will be equally deducted from the amount of each specified output.\n "
3472
+ " Those recipients will receive less Dash than you enter in their corresponding amount field.\n "
3473
+ " If no outputs are specified here, the sender pays the fee." ,
3474
3474
{
3475
3475
{" vout_index" , RPCArg::Type::NUM, RPCArg::Optional::OMITTED, " The zero-based output index, before a change output is added." },
3476
3476
},
@@ -4107,7 +4107,7 @@ static RPCHelpMan send()
4107
4107
" \n EXPERIMENTAL warning: this call may be changed in future releases.\n "
4108
4108
" \n Send a transaction.\n " ,
4109
4109
{
4110
- {" outputs" , RPCArg::Type::ARR, RPCArg::Optional::NO, " A JSON array with outputs (key-value pairs), where none of the keys are duplicated.\n "
4110
+ {" outputs" , RPCArg::Type::ARR, RPCArg::Optional::NO, " The outputs (key-value pairs), where none of the keys are duplicated.\n "
4111
4111
" That is, each address can only appear once and there can only be one 'data' object.\n "
4112
4112
" For convenience, a dictionary, which holds the key-value pairs directly, is also accepted." ,
4113
4113
{
@@ -4445,7 +4445,7 @@ static RPCHelpMan walletcreatefundedpsbt()
4445
4445
{" outputs" , RPCArg::Type::ARR, RPCArg::Optional::NO, " The outputs (key-value pairs), where none of the keys are duplicated.\n "
4446
4446
" That is, each address can only appear once and there can only be one 'data' object.\n "
4447
4447
" For compatibility reasons, a dictionary, which holds the key-value pairs directly, is also\n "
4448
- " accepted as second parameter." ,
4448
+ " accepted as second parameter." ,
4449
4449
{
4450
4450
{" " , RPCArg::Type::OBJ, RPCArg::Optional::OMITTED, " " ,
4451
4451
{
@@ -4469,9 +4469,9 @@ static RPCHelpMan walletcreatefundedpsbt()
4469
4469
{" lockUnspents" , RPCArg::Type::BOOL, /* default */ " false" , " Lock selected unspent outputs" },
4470
4470
{" feeRate" , RPCArg::Type::AMOUNT, /* default */ " not set: makes wallet determine the fee" , " Set a specific fee rate in " + CURRENCY_UNIT + " /kB" },
4471
4471
{" subtractFeeFromOutputs" , RPCArg::Type::ARR, /* default */ " empty array" , " The outputs to subtract the fee from.\n "
4472
- " The fee will be equally deducted from the amount of each specified output.\n "
4473
- " Those recipients will receive less Dash than you enter in their corresponding amount field.\n "
4474
- " If no outputs are specified here, the sender pays the fee." ,
4472
+ " The fee will be equally deducted from the amount of each specified output.\n "
4473
+ " Those recipients will receive less Dash than you enter in their corresponding amount field.\n "
4474
+ " If no outputs are specified here, the sender pays the fee." ,
4475
4475
{
4476
4476
{" vout_index" , RPCArg::Type::NUM, RPCArg::Optional::OMITTED, " The zero-based output index, before a change output is added." },
4477
4477
},
0 commit comments