mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-08-26 21:01:06 +02:00
refactor: CTxMemPool::GetTotalTxSize() requires CTxMemPool::cs lock
No change in behavior, the lock is already held at call sites.
This commit is contained in:
@@ -710,9 +710,9 @@ public:
|
||||
return mapTx.size();
|
||||
}
|
||||
|
||||
uint64_t GetTotalTxSize() const
|
||||
uint64_t GetTotalTxSize() const EXCLUSIVE_LOCKS_REQUIRED(cs)
|
||||
{
|
||||
LOCK(cs);
|
||||
AssertLockHeld(cs);
|
||||
return totalTxSize;
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user