fa710a6d67 doc: Add 19501 release notes (MarcoFalke)
faf60dee34 doc: Remove double-whitespace from help string, other whitespace fixups (MarcoFalke)
Pull request description:
Adds release notes and fixes up some whitespace nits for the touched RPCs
ACKs for top commit:
fanquake:
ACK fa710a6d67
laanwj:
Code review ACK fa710a6d67
Tree-SHA512: b84a96386a9a8ed69f464c7dffdd600cf9a8b33a06120798b141b300991baed369ab91ae48df6446e89e1d62534ccd8ae721454e7a19b48900b317e9192afc47
{"address",RPCArg::Type::STR,RPCArg::Optional::NO,"The bitcoin address to send to."},
{"address",RPCArg::Type::STR,RPCArg::Optional::NO,"The bitcoin address to send to."},
{"amount",RPCArg::Type::AMOUNT,RPCArg::Optional::NO,"The amount in "+CURRENCY_UNIT+" to send. eg 0.1"},
{"amount",RPCArg::Type::AMOUNT,RPCArg::Optional::NO,"The amount in "+CURRENCY_UNIT+" to send. eg 0.1"},
{"comment",RPCArg::Type::STR,RPCArg::Optional::OMITTED_NAMED_ARG,"A comment used to store what the transaction is for.\n"
{"comment",RPCArg::Type::STR,RPCArg::Optional::OMITTED_NAMED_ARG,"A comment used to store what the transaction is for.\n"
" This is not part of the transaction, just kept in your wallet."},
"This is not part of the transaction, just kept in your wallet."},
{"comment_to",RPCArg::Type::STR,RPCArg::Optional::OMITTED_NAMED_ARG,"A comment to store the name of the person or organization\n"
{"comment_to",RPCArg::Type::STR,RPCArg::Optional::OMITTED_NAMED_ARG,"A comment to store the name of the person or organization\n"
" to which you're sending the transaction. This is not part of the \n"
"to which you're sending the transaction. This is not part of the \n"
" transaction, just kept in your wallet."},
"transaction, just kept in your wallet."},
{"subtractfeefromamount",RPCArg::Type::BOOL,/* default */"false","The fee will be deducted from the amount being sent.\n"
{"subtractfeefromamount",RPCArg::Type::BOOL,/* default */"false","The fee will be deducted from the amount being sent.\n"
" The recipient will receive less bitcoins than you enter in the amount field."},
"The recipient will receive less bitcoins than you enter in the amount field."},
{"replaceable",RPCArg::Type::BOOL,/* default */"wallet default","Allow this transaction to be replaced by a transaction with higher fees via BIP 125"},
{"replaceable",RPCArg::Type::BOOL,/* default */"wallet default","Allow this transaction to be replaced by a transaction with higher fees via BIP 125"},
{"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)"},
{"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)"},
{"estimate_mode",RPCArg::Type::STR,/* default */"unset",std::string()+"The fee estimate mode, must be one of (case insensitive):\n"
{"estimate_mode",RPCArg::Type::STR,/* default */"unset",std::string()+"The fee estimate mode, must be one of (case insensitive):\n"
"\""+FeeModes("\"\n\"")+"\""},
"\""+FeeModes("\"\n\"")+"\""},
{"avoid_reuse",RPCArg::Type::BOOL,/* default */"true","(only available if avoid_reuse wallet flag is set) Avoid spending from dirty addresses; addresses are considered\n"
{"avoid_reuse",RPCArg::Type::BOOL,/* default */"true","(only available if avoid_reuse wallet flag is set) Avoid spending from dirty addresses; addresses are considered\n"
" dirty if they have previously been used in a transaction."},
"dirty if they have previously been used in a transaction."},
{"verbose",RPCArg::Type::BOOL,/* default */"false","If true, return extra information about the transaction."},
{"verbose",RPCArg::Type::BOOL,/* default */"false","If true, return extra information about the transaction."},
{"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"},
{"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"},
{"include_watchonly",RPCArg::Type::BOOL,/* default */"true for watch-only wallets, otherwise false","Include transactions to watch-only addresses (see 'importaddress')"},
{"include_watchonly",RPCArg::Type::BOOL,/* default */"true for watch-only wallets, otherwise false","Include transactions to watch-only addresses (see 'importaddress')"},
{"include_removed",RPCArg::Type::BOOL,/* default */"true","Show transactions that were removed due to a reorg in the \"removed\" array\n"
{"include_removed",RPCArg::Type::BOOL,/* default */"true","Show transactions that were removed due to a reorg in the \"removed\" array\n"
{"newkeypool",RPCArg::Type::BOOL,/* default */"true","Whether to flush old unused addresses, including change addresses, from the keypool and regenerate it.\n"
{"newkeypool",RPCArg::Type::BOOL,/* default */"true","Whether to flush old unused addresses, including change addresses, from the keypool and regenerate it.\n"
" If true, the next address from getnewaddress and change address from getrawchangeaddress will be from this new seed.\n"
"If true, the next address from getnewaddress and change address from getrawchangeaddress will be from this new seed.\n"
" If false, addresses (including change addresses if the wallet already had HD Chain Split enabled) from the existing\n"
"If false, addresses (including change addresses if the wallet already had HD Chain Split enabled) from the existing\n"
" keypool will be used until it has been depleted."},
"keypool will be used until it has been depleted."},
{"seed",RPCArg::Type::STR,/* default */"random seed","The WIF private key to use as the new HD seed.\n"
{"seed",RPCArg::Type::STR,/* default */"random seed","The WIF private key to use as the new HD seed.\n"
" The seed value can be retrieved using the dumpwallet command. It is the private key marked hdseed=1"},
"The seed value can be retrieved using the dumpwallet command. It is the private key marked hdseed=1"},