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
Merge bitcoin#25439: rpc: Return incrementalrelayfee in getmempoolinfo
fafee78 rpc: Return incrementalrelayfee in getmempoolinfo (MacroFake)
Pull request description:
Seems odd to return other policy info, but not the incremental relay fee
ACKs for top commit:
1440000bytes:
ACK bitcoin@fafee78
w0xlt:
Code Review ACK bitcoin@fafee78
jarolrod:
tACK fafee78
Tree-SHA512: faad0af6c039b8257acbeac913bc5dcdb2ea2db304c95e52601536c8de60eb1186e9fbb4a64a68adf476605f18022aeda16a5644a0d7912592b0977e4c029638
@@ -401,7 +402,7 @@ UniValue MempoolInfoToJSON(const CTxMemPool& pool, const llmq::CInstantSendManag
401
402
RPCHelpMan getmempoolinfo()
402
403
{
403
404
return RPCHelpMan{"getmempoolinfo",
404
-
"\nReturns details on the active state of the TX memory pool.\n",
405
+
"Returns details on the active state of the TX memory pool.",
405
406
{},
406
407
RPCResult{
407
408
RPCResult::Type::OBJ, "", "",
@@ -414,6 +415,7 @@ RPCHelpMan getmempoolinfo()
414
415
{RPCResult::Type::NUM, "maxmempool", "Maximum memory usage for the mempool"},
415
416
{RPCResult::Type::STR_AMOUNT, "mempoolminfee", "Minimum fee rate in " + CURRENCY_UNIT + "/kB for tx to be accepted. Is the maximum of minrelaytxfee and minimum mempool fee"},
416
417
{RPCResult::Type::STR_AMOUNT, "minrelaytxfee", "Current minimum relay fee for transactions"},
418
+
{RPCResult::Type::STR_AMOUNT, "incrementalrelayfee", "minimum fee rate increment for mempool limiting or BIP 125 replacement in " + CURRENCY_UNIT + "/kB"},
417
419
{RPCResult::Type::NUM, "instantsendlocks", "Number of unconfirmed InstantSend locks"},
418
420
{RPCResult::Type::NUM, "unbroadcastcount", "Current number of transactions that haven't passed initial broadcast yet"}
0 commit comments