Skip to content

Commit 297ea51

Browse files
author
MarcoFalke
committed
Merge #15760: doc: Clarify sendrawtransaction::maxfeerate==0 help
fa49db7 doc: Clarify sendrawtransaction::maxfeerate==0 help (MarcoFalke) Pull request description: Used a lot in e.g. the tests: `git grep 'maxfeerate=0)' test` ACKs for commit fa49db: promag: ACK fa49db7. jonatack: ACK bitcoin/bitcoin@fa49db7 Tree-SHA512: cb3fa10960f45606c3599b76c48666a663e5c44cfb7c29bab5d44caa7dc6cb57aaac81cb9b173e079dde01d07c5363c99416f25303a8fd41010928118474a741
2 parents 414d846 + fa49db7 commit 297ea51

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)