aboutsummaryrefslogtreecommitdiff
path: root/src/txmempool.h
diff options
context:
space:
mode:
authorHennadii Stepanov <32963518+hebasto@users.noreply.github.com>2020-09-01 12:33:39 +0300
committerHennadii Stepanov <32963518+hebasto@users.noreply.github.com>2020-09-01 12:34:39 +0300
commit7c4bd0387a01a0c3e2938d530dba3c882e4d8f2b (patch)
tree80605cad9d4d8fc1a6bac88cd4cb89eac2e064d9 /src/txmempool.h
parentfa5fcb032b6ed04c49ee465235288b8059fa805e (diff)
downloadbitcoin-7c4bd0387a01a0c3e2938d530dba3c882e4d8f2b.tar.xz
refactor: CTxMemPool::GetTotalTxSize() requires CTxMemPool::cs lock
No change in behavior, the lock is already held at call sites.
Diffstat (limited to 'src/txmempool.h')
-rw-r--r--src/txmempool.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/txmempool.h b/src/txmempool.h
index ddd87d2eb3..6e286faf80 100644
--- a/src/txmempool.h
+++ b/src/txmempool.h
@@ -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;
}