diff options
author | MarcoFalke <falke.marco@gmail.com> | 2021-01-15 16:39:37 +0100 |
---|---|---|
committer | MarcoFalke <falke.marco@gmail.com> | 2021-01-28 10:43:22 +0100 |
commit | fa362064e383163a2585ffbc71ac1ea3bcc92663 (patch) | |
tree | 8b8494e25d23c9de4ddae36c848a05ec28deaa54 /doc/REST-interface.md | |
parent | 4bd586607d6305b828f0f554394d1c25b6dbcd14 (diff) |
rpc: Return total fee in mempool
Also, add missing lock annotations
Diffstat (limited to 'doc/REST-interface.md')
-rw-r--r-- | doc/REST-interface.md | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/doc/REST-interface.md b/doc/REST-interface.md index 6237734390..ea06952af4 100644 --- a/doc/REST-interface.md +++ b/doc/REST-interface.md @@ -111,12 +111,7 @@ $ curl localhost:18332/rest/getutxos/checkmempool/b2cdfd7b89def827ff8af7cd9bff76 Returns various information about the TX mempool. Only supports JSON as output format. -* loaded : (boolean) if the mempool is fully loaded -* size : (numeric) the number of transactions in the TX mempool -* bytes : (numeric) size of the TX mempool in bytes -* usage : (numeric) total TX mempool memory usage -* maxmempool : (numeric) maximum memory usage for the mempool in bytes -* mempoolminfee : (numeric) minimum feerate (BTC per KB) for tx to be accepted +Refer to the `getmempoolinfo` RPC for documentation of the fields. `GET /rest/mempool/contents.json` |