Skip to content

Commit b212f94

Browse files
committed
Describe maxmempool and mempoolminfee in the getmempoolinfo RPC help.
1 parent 93e0514 commit b212f94

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

src/rpcblockchain.cpp

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -795,9 +795,11 @@ UniValue getmempoolinfo(const UniValue& params, bool fHelp)
795795
"\nReturns details on the active state of the TX memory pool.\n"
796796
"\nResult:\n"
797797
"{\n"
798-
" \"size\": xxxxx (numeric) Current tx count\n"
799-
" \"bytes\": xxxxx (numeric) Sum of all tx sizes\n"
800-
" \"usage\": xxxxx (numeric) Total memory usage for the mempool\n"
798+
" \"size\": xxxxx, (numeric) Current tx count\n"
799+
" \"bytes\": xxxxx, (numeric) Sum of all tx sizes\n"
800+
" \"usage\": xxxxx, (numeric) Total memory usage for the mempool\n"
801+
" \"maxmempool\": xxxxx, (numeric) Maximum memory usage for the mempool\n"
802+
" \"mempoolminfee\": xxxxx (numeric) Minimum fee for tx to be accepted\n"
801803
"}\n"
802804
"\nExamples:\n"
803805
+ HelpExampleCli("getmempoolinfo", "")

0 commit comments

Comments
 (0)