diff options
author | Hennadii Stepanov <32963518+hebasto@users.noreply.github.com> | 2020-09-01 12:22:21 +0300 |
---|---|---|
committer | Hennadii Stepanov <32963518+hebasto@users.noreply.github.com> | 2020-09-01 12:34:29 +0300 |
commit | 7140b31b90cbd84d75eedb3e395d0d55f83b5b95 (patch) | |
tree | 1407b7a46bbf4b96dcbefa34533971bac7df322b /src/txmempool.h | |
parent | 66e47e5e506043fbb9b4e487b44bf992985709c9 (diff) |
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.h | 2 |
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 */ |