We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2266eba commit 5269d57Copy full SHA for 5269d57
src/node/txdownloadman_impl.cpp
@@ -313,7 +313,7 @@ node::RejectedTxTodo TxDownloadManagerImpl::MempoolRejectedTx(const CTransaction
313
if (state.GetResult() == TxValidationResult::TX_MISSING_INPUTS) {
314
// Only process a new orphan if this is a first time failure, as otherwise it must be either
315
// already in orphanage or from 1p1c processing.
316
- if (first_time_failure) {
+ if (first_time_failure && !RecentRejectsFilter().contains(ptx->GetWitnessHash().ToUint256())) {
317
bool fRejectedParents = false; // It may be the case that the orphans parents have all been rejected
318
319
// Deduplicate parent txids, so that we don't have to loop over
0 commit comments