mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-12-11 13:13:49 +01:00
refactor: CTxMemPool::UpdateChild() requires CTxMemPool::cs lock
No change in behavior, the lock is already held at call sites.
This commit is contained in:
@@ -968,6 +968,7 @@ void CTxMemPool::addUnchecked(const CTxMemPoolEntry &entry, bool validFeeEstimat
|
|||||||
|
|
||||||
void CTxMemPool::UpdateChild(txiter entry, txiter child, bool add)
|
void CTxMemPool::UpdateChild(txiter entry, txiter child, bool add)
|
||||||
{
|
{
|
||||||
|
AssertLockHeld(cs);
|
||||||
setEntries s;
|
setEntries s;
|
||||||
if (add && mapLinks[entry].children.insert(child).second) {
|
if (add && mapLinks[entry].children.insert(child).second) {
|
||||||
cachedInnerUsage += memusage::IncrementalDynamicUsage(s);
|
cachedInnerUsage += memusage::IncrementalDynamicUsage(s);
|
||||||
|
|||||||
@@ -569,7 +569,7 @@ private:
|
|||||||
txlinksMap mapLinks;
|
txlinksMap mapLinks;
|
||||||
|
|
||||||
void UpdateParent(txiter entry, txiter parent, bool add) EXCLUSIVE_LOCKS_REQUIRED(cs);
|
void UpdateParent(txiter entry, txiter parent, bool add) EXCLUSIVE_LOCKS_REQUIRED(cs);
|
||||||
void UpdateChild(txiter entry, txiter child, bool add);
|
void UpdateChild(txiter entry, txiter child, bool add) EXCLUSIVE_LOCKS_REQUIRED(cs);
|
||||||
|
|
||||||
std::vector<indexed_transaction_set::const_iterator> GetSortedDepthAndScore() const EXCLUSIVE_LOCKS_REQUIRED(cs);
|
std::vector<indexed_transaction_set::const_iterator> GetSortedDepthAndScore() const EXCLUSIVE_LOCKS_REQUIRED(cs);
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user