diff options
| author | Wladimir J. van der Laan <[email protected]> | 2015-12-02 12:43:59 +0100 |
|---|---|---|
| committer | Wladimir J. van der Laan <[email protected]> | 2015-12-02 12:44:04 +0100 |
| commit | 8e598dc4ea1da92d34c8d964060d1d72f4465370 (patch) | |
| tree | 8d4e3d47f30b804e8e335d95c5c3551e4a6ca024 /src/rpcblockchain.cpp | |
| parent | Merge pull request #7155 (diff) | |
| parent | Describe maxmempool and mempoolminfee in the getmempoolinfo RPC help. (diff) | |
| download | discoin-8e598dc4ea1da92d34c8d964060d1d72f4465370.tar.xz discoin-8e598dc4ea1da92d34c8d964060d1d72f4465370.zip | |
Merge pull request #7118
b212f94 Describe maxmempool and mempoolminfee in the getmempoolinfo RPC help. (Pavel JanÃk)
Diffstat (limited to 'src/rpcblockchain.cpp')
| -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 aede79753..ee04636ce 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", "") |