Add "instantsendlocks" to getmempoolinfo RPC (#3047)

This commit is contained in:
Alexander Block 2019-08-07 17:49:44 +02:00
parent a8fb8252e9
commit 2e0cf8a30b

View File

@ -1503,6 +1503,7 @@ UniValue mempoolInfoToJSON()
size_t maxmempool = GetArg("-maxmempool", DEFAULT_MAX_MEMPOOL_SIZE) * 1000000;
ret.push_back(Pair("maxmempool", (int64_t) maxmempool));
ret.push_back(Pair("mempoolminfee", ValueFromAmount(mempool.GetMinFee(maxmempool).GetFeePerK())));
ret.push_back(Pair("instantsendlocks", (int64_t)llmq::quorumInstantSendManager->GetInstantSendLockCount()));
return ret;
}
@ -1520,6 +1521,7 @@ UniValue getmempoolinfo(const JSONRPCRequest& request)
" \"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"
" \"instantsendlocks\": xxxxx, (numeric) Number of unconfirmed instant send locks\n"
"}\n"
"\nExamples:\n"
+ HelpExampleCli("getmempoolinfo", "")