diff options
| author | Pavel Janík <[email protected]> | 2015-11-27 16:53:29 +0100 |
|---|---|---|
| committer | Pavel Janík <[email protected]> | 2015-12-01 11:26:32 +0100 |
| commit | b212f94dd917c7fb56cc3b2bd708b1d20e831e7e (patch) | |
| tree | 53087fc5222ca8eae2e94937b2e6789f098ddd99 /src/rpcblockchain.cpp | |
| parent | Merge pull request #7078 (diff) | |
| download | discoin-b212f94dd917c7fb56cc3b2bd708b1d20e831e7e.tar.xz discoin-b212f94dd917c7fb56cc3b2bd708b1d20e831e7e.zip | |
Describe maxmempool and mempoolminfee in the getmempoolinfo RPC help.
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 c87282275..5f77ca00d 100644 --- a/src/rpcblockchain.cpp +++ b/src/rpcblockchain.cpp @@ -795,9 +795,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", "") |