aboutsummaryrefslogtreecommitdiff
path: root/src/txmempool.h
diff options
context:
space:
mode:
authorHennadii Stepanov <32963518+hebasto@users.noreply.github.com>2020-09-01 12:22:21 +0300
committerHennadii Stepanov <32963518+hebasto@users.noreply.github.com>2020-09-01 12:34:29 +0300
commit7140b31b90cbd84d75eedb3e395d0d55f83b5b95 (patch)
tree1407b7a46bbf4b96dcbefa34533971bac7df322b /src/txmempool.h
parent66e47e5e506043fbb9b4e487b44bf992985709c9 (diff)
downloadbitcoin-7140b31b90cbd84d75eedb3e395d0d55f83b5b95.tar.xz
refactor: CTxMemPool::ApplyDelta() requires CTxMemPool::cs lock
No change in behavior, the lock is already held at call sites. Also `const uint256` refactored to `const uint256&`.
Diffstat (limited to 'src/txmempool.h')
-rw-r--r--src/txmempool.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/txmempool.h b/src/txmempool.h
index 05455b8bdd..46bcf85712 100644
--- a/src/txmempool.h
+++ b/src/txmempool.h
@@ -626,7 +626,7 @@ public:
/** Affect CreateNewBlock prioritisation of transactions */
void PrioritiseTransaction(const uint256& hash, const CAmount& nFeeDelta);
- void ApplyDelta(const uint256 hash, CAmount &nFeeDelta) const;
+ void ApplyDelta(const uint256& hash, CAmount &nFeeDelta) const EXCLUSIVE_LOCKS_REQUIRED(cs);
void ClearPrioritisation(const uint256 hash);
/** Get the transaction in the pool that spends the same prevout */