diff options
author | Wladimir J. van der Laan <laanwj@gmail.com> | 2015-12-02 12:43:59 +0100 |
---|---|---|
committer | Wladimir J. van der Laan <laanwj@gmail.com> | 2015-12-02 12:44:04 +0100 |
commit | 8e598dc4ea1da92d34c8d964060d1d72f4465370 (patch) | |
tree | 8d4e3d47f30b804e8e335d95c5c3551e4a6ca024 /src | |
parent | 3fd3b8617f2d0467ac0bb205df9c4735136c0919 (diff) | |
parent | b212f94dd917c7fb56cc3b2bd708b1d20e831e7e (diff) |
Merge pull request #7118
b212f94 Describe maxmempool and mempoolminfee in the getmempoolinfo RPC help. (Pavel JanÃk)
Diffstat (limited to 'src')
-rw-r--r-- | src/rpcblockchain.cpp | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/src/rpcblockchain.cpp b/src/rpcblockchain.cpp index aede797531..ee04636ce8 100644 --- a/src/rpcblockchain.cpp +++ b/src/rpcblockchain.cpp @@ -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", "") |