Skip to content

Commit fa49db7

Browse files
author
MarcoFalke
committed
doc: Clarify sendrawtransaction::maxfeerate==0 help
1 parent c83442e commit fa49db7

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/rpc/rawtransaction.cpp

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1054,7 +1054,9 @@ static UniValue sendrawtransaction(const JSONRPCRequest& request)
10541054
"\nAlso see createrawtransaction and signrawtransactionwithkey calls.\n",
10551055
{
10561056
{"hexstring", RPCArg::Type::STR_HEX, RPCArg::Optional::NO, "The hex string of the raw transaction"},
1057-
{"maxfeerate", RPCArg::Type::AMOUNT, /* default */ FormatMoney(DEFAULT_MAX_RAW_TX_FEE), "Reject transactions whose fee rate is higher than the specified value, expressed in " + CURRENCY_UNIT + "/kB\n"},
1057+
{"maxfeerate", RPCArg::Type::AMOUNT, /* default */ FormatMoney(DEFAULT_MAX_RAW_TX_FEE),
1058+
"Reject transactions whose fee rate is higher than the specified value, expressed in " + CURRENCY_UNIT +
1059+
"/kB.\nSet to 0 to accept any fee rate.\n"},
10581060
},
10591061
RPCResult{
10601062
"\"hex\" (string) The transaction hash in hex\n"

0 commit comments

Comments
 (0)