fac09f4f7a refactor: Remove not needed empty RPC doc std::string (MacroFake)
Pull request description:
Not sure why this was put there, so remove it
ACKs for top commit:
aureleoules:
ACK fac09f4f7a.
Tree-SHA512: 7fae9c612dbb82db39e3dc6e20cc7d0c8128f4abf27e34f4854f908dc1bf3ad48ebee2dbbb864a9ce95e98c5d57119bf976793945a2084a43d137c2d95a25ea1
"The recipient will receive less bitcoins than you enter in the amount field."},
{"replaceable",RPCArg::Type::BOOL,RPCArg::DefaultHint{"wallet default"},"Allow this transaction to be replaced by a transaction with higher fees via BIP 125"},
{"conf_target",RPCArg::Type::NUM,RPCArg::DefaultHint{"wallet -txconfirmtarget"},"Confirmation target in blocks"},
{"estimate_mode",RPCArg::Type::STR,RPCArg::Default{"unset"},std::string()+"The fee estimate mode, must be one of (case insensitive):\n"
"\""+FeeModes("\"\n\"")+"\""},
{"estimate_mode",RPCArg::Type::STR,RPCArg::Default{"unset"},"The fee estimate mode, must be one of (case insensitive):\n"
"\""+FeeModes("\"\n\"")+"\""},
{"avoid_reuse",RPCArg::Type::BOOL,RPCArg::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. If true, this also activates avoidpartialspends, grouping outputs by their addresses."},
{"fee_rate",RPCArg::Type::AMOUNT,RPCArg::DefaultHint{"not set, fall back to wallet fee estimation"},"Specify a fee rate in "+CURRENCY_ATOM+"/vB."},
@ -335,8 +335,8 @@ RPCHelpMan sendmany()
},
{"replaceable",RPCArg::Type::BOOL,RPCArg::DefaultHint{"wallet default"},"Allow this transaction to be replaced by a transaction with higher fees via BIP 125"},
{"conf_target",RPCArg::Type::NUM,RPCArg::DefaultHint{"wallet -txconfirmtarget"},"Confirmation target in blocks"},
{"estimate_mode",RPCArg::Type::STR,RPCArg::Default{"unset"},std::string()+"The fee estimate mode, must be one of (case insensitive):\n"
"\""+FeeModes("\"\n\"")+"\""},
{"estimate_mode",RPCArg::Type::STR,RPCArg::Default{"unset"},"The fee estimate mode, must be one of (case insensitive):\n"
"\""+FeeModes("\"\n\"")+"\""},
{"fee_rate",RPCArg::Type::AMOUNT,RPCArg::DefaultHint{"not set, fall back to wallet fee estimation"},"Specify a fee rate in "+CURRENCY_ATOM+"/vB."},
{"verbose",RPCArg::Type::BOOL,RPCArg::Default{false},"If true, return extra infomration about the transaction."},