Merge #7874: Improve AlreadyHave
c6cb6f7 Avoid unnecessary database access for unknown transactions (Alex Morcos)
This commit is contained in:
parent
60e6a602e6
commit
753cb1563b
@ -691,10 +691,12 @@ bool static AlreadyHave(const CInv& inv) EXCLUSIVE_LOCKS_REQUIRED(cs_main)
|
||||
recentRejects->reset();
|
||||
}
|
||||
|
||||
// Use pcoinsTip->HaveCoinsInCache as a quick approximation to exclude
|
||||
// requesting or processing some txs which have already been included in a block
|
||||
return recentRejects->contains(inv.hash) ||
|
||||
mempool.exists(inv.hash) ||
|
||||
mapOrphanTransactions.count(inv.hash) ||
|
||||
pcoinsTip->HaveCoins(inv.hash);
|
||||
pcoinsTip->HaveCoinsInCache(inv.hash);
|
||||
}
|
||||
|
||||
case MSG_BLOCK:
|
||||
|
Loading…
Reference in New Issue
Block a user