mirror of
https://github.com/Retropex/bitcoin.git
synced 2025-05-19 22:50:44 +02:00
rest/rpc: Make mempoolinfo atomic
This commit is contained in:
parent
efed9809b4
commit
e377846ff1
@ -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());
|
||||
|
Loading…
Reference in New Issue
Block a user