You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fa710a6 doc: Add 19501 release notes (MarcoFalke)
faf60de 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 fa710a6
laanwj:
Code review ACK fa710a6
Tree-SHA512: b84a96386a9a8ed69f464c7dffdd600cf9a8b33a06120798b141b300991baed369ab91ae48df6446e89e1d62534ccd8ae721454e7a19b48900b317e9192afc47
{"address", RPCArg::Type::STR, RPCArg::Optional::NO, "The bitcoin address to send to."},
434
434
{"amount", RPCArg::Type::AMOUNT, RPCArg::Optional::NO, "The amount in " + CURRENCY_UNIT + " to send. eg 0.1"},
435
435
{"comment", RPCArg::Type::STR, RPCArg::Optional::OMITTED_NAMED_ARG, "A comment used to store what the transaction is for.\n"
436
-
" This is not part of the transaction, just kept in your wallet."},
436
+
"This is not part of the transaction, just kept in your wallet."},
437
437
{"comment_to", RPCArg::Type::STR, RPCArg::Optional::OMITTED_NAMED_ARG, "A comment to store the name of the person or organization\n"
438
-
" to which you're sending the transaction. This is not part of the \n"
439
-
" transaction, just kept in your wallet."},
438
+
"to which you're sending the transaction. This is not part of the \n"
439
+
"transaction, just kept in your wallet."},
440
440
{"subtractfeefromamount", RPCArg::Type::BOOL, /* default */"false", "The fee will be deducted from the amount being sent.\n"
441
-
" The recipient will receive less bitcoins than you enter in the amount field."},
441
+
"The recipient will receive less bitcoins than you enter in the amount field."},
442
442
{"replaceable", RPCArg::Type::BOOL, /* default */"wallet default", "Allow this transaction to be replaced by a transaction with higher fees via BIP 125"},
443
443
{"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)"},
444
444
{"estimate_mode", RPCArg::Type::STR, /* default */"unset", std::string() + "The fee estimate mode, must be one of (case insensitive):\n"
445
445
"\"" + FeeModes("\"\n\"") + "\""},
446
446
{"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"
447
-
" dirty if they have previously been used in a transaction."},
447
+
"dirty if they have previously been used in a transaction."},
448
448
{"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"},
1514
1514
{"include_watchonly", RPCArg::Type::BOOL, /* default */"true for watch-only wallets, otherwise false", "Include transactions to watch-only addresses (see 'importaddress')"},
1515
1515
{"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"
4177
-
" If true, the next address from getnewaddress and change address from getrawchangeaddress will be from this new seed.\n"
4178
-
" If false, addresses (including change addresses if the wallet already had HD Chain Split enabled) from the existing\n"
4179
-
" keypool will be used until it has been depleted."},
4177
+
"If true, the next address from getnewaddress and change address from getrawchangeaddress will be from this new seed.\n"
4178
+
"If false, addresses (including change addresses if the wallet already had HD Chain Split enabled) from the existing\n"
4179
+
"keypool will be used until it has been depleted."},
4180
4180
{"seed", RPCArg::Type::STR, /* default */"random seed", "The WIF private key to use as the new HD seed.\n"
4181
-
" The seed value can be retrieved using the dumpwallet command. It is the private key marked hdseed=1"},
4181
+
"The seed value can be retrieved using the dumpwallet command. It is the private key marked hdseed=1"},
0 commit comments