rest/rpc: Make mempoolinfo atomic

This commit is contained in:
João Barbosa 2019-02-25 15:09:24 +00:00
parent efed9809b4
commit e377846ff1

View file

@ -1483,6 +1483,8 @@ static UniValue getchaintips(const JSONRPCRequest& request)
UniValue MempoolInfoToJSON(const CTxMemPool& pool)
{
// Make sure this call is atomic in the pool.
LOCK(pool.cs);
UniValue ret(UniValue::VOBJ);
ret.pushKV("size", (int64_t)pool.size());
ret.pushKV("bytes", (int64_t)pool.GetTotalTxSize());