Browse Source

Consider all (<100k memusage) txn for compact-block-extra-txn cache

0.14
Matt Corallo 8 years ago
parent
commit
863edb45b9
  1. 5
      src/net_processing.cpp

5
src/net_processing.cpp

@ -1741,7 +1741,10 @@ bool static ProcessMessage(CNode* pfrom, string strCommand, CDataStream& vRecv,
// See https://github.com/bitcoin/bitcoin/issues/8279 for details. // See https://github.com/bitcoin/bitcoin/issues/8279 for details.
assert(recentRejects); assert(recentRejects);
recentRejects->insert(tx.GetHash()); recentRejects->insert(tx.GetHash());
} if (RecursiveDynamicUsage(*ptx) < 100000)
AddToCompactExtraTransactions(ptx);
} else if (tx.HasWitness() && RecursiveDynamicUsage(*ptx) < 100000)
AddToCompactExtraTransactions(ptx);
if (pfrom->fWhitelisted && GetBoolArg("-whitelistforcerelay", DEFAULT_WHITELISTFORCERELAY)) { if (pfrom->fWhitelisted && GetBoolArg("-whitelistforcerelay", DEFAULT_WHITELISTFORCERELAY)) {
// Always relay transactions received from whitelisted peers, even // Always relay transactions received from whitelisted peers, even

Loading…
Cancel
Save