Browse Source

Merge pull request #7118

b212f94 Describe maxmempool and mempoolminfee in the getmempoolinfo RPC help. (Pavel Janík)
0.13
Wladimir J. van der Laan 9 years ago
parent
commit
8e598dc4ea
No known key found for this signature in database
GPG Key ID: 74810B012346C9A6
  1. 8
      src/rpcblockchain.cpp

8
src/rpcblockchain.cpp

@ -797,9 +797,11 @@ UniValue getmempoolinfo(const UniValue& params, bool fHelp) @@ -797,9 +797,11 @@ UniValue getmempoolinfo(const UniValue& params, bool fHelp)
"\nReturns details on the active state of the TX memory pool.\n"
"\nResult:\n"
"{\n"
" \"size\": xxxxx (numeric) Current tx count\n"
" \"bytes\": xxxxx (numeric) Sum of all tx sizes\n"
" \"usage\": xxxxx (numeric) Total memory usage for the mempool\n"
" \"size\": xxxxx, (numeric) Current tx count\n"
" \"bytes\": xxxxx, (numeric) Sum of all tx sizes\n"
" \"usage\": xxxxx, (numeric) Total memory usage for the mempool\n"
" \"maxmempool\": xxxxx, (numeric) Maximum memory usage for the mempool\n"
" \"mempoolminfee\": xxxxx (numeric) Minimum fee for tx to be accepted\n"
"}\n"
"\nExamples:\n"
+ HelpExampleCli("getmempoolinfo", "")

Loading…
Cancel
Save