Skip to content

Commit 8e598dc

Browse files
committed
Merge pull request #7118
b212f94 Describe maxmempool and mempoolminfee in the getmempoolinfo RPC help. (Pavel Janík)
2 parents 3fd3b86 + b212f94 commit 8e598dc

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
@@ -797,9 +797,11 @@ UniValue getmempoolinfo(const UniValue& params, bool fHelp)
797797
"\nReturns details on the active state of the TX memory pool.\n"
798798
"\nResult:\n"
799799
"{\n"
800-
" \"size\": xxxxx (numeric) Current tx count\n"
801-
" \"bytes\": xxxxx (numeric) Sum of all tx sizes\n"
802-
" \"usage\": xxxxx (numeric) Total memory usage for the mempool\n"
800+
" \"size\": xxxxx, (numeric) Current tx count\n"
801+
" \"bytes\": xxxxx, (numeric) Sum of all tx sizes\n"
802+
" \"usage\": xxxxx, (numeric) Total memory usage for the mempool\n"
803+
" \"maxmempool\": xxxxx, (numeric) Maximum memory usage for the mempool\n"
804+
" \"mempoolminfee\": xxxxx (numeric) Minimum fee for tx to be accepted\n"
803805
"}\n"
804806
"\nExamples:\n"
805807
+ HelpExampleCli("getmempoolinfo", "")

0 commit comments

Comments
 (0)