Browse Source

Merge #9313: If we don't allow free txs, always send a fee filter

01fea7a If we don't allow free txs, always send a fee filter (Alex Morcos)
0.14
Wladimir J. van der Laan 8 years ago
parent
commit
756374c522
No known key found for this signature in database
GPG Key ID: 74810B012346C9A6
  1. 3
      src/net_processing.cpp

3
src/net_processing.cpp

@ -2995,6 +2995,9 @@ bool SendMessages(CNode* pto, CConnman& connman) @@ -2995,6 +2995,9 @@ bool SendMessages(CNode* pto, CConnman& connman)
if (pto->nVersion >= FEEFILTER_VERSION && GetBoolArg("-feefilter", DEFAULT_FEEFILTER) &&
!(pto->fWhitelisted && GetBoolArg("-whitelistforcerelay", DEFAULT_WHITELISTFORCERELAY))) {
CAmount currentFilter = mempool.GetMinFee(GetArg("-maxmempool", DEFAULT_MAX_MEMPOOL_SIZE) * 1000000).GetFeePerK();
// If we don't allow free transactions, then we always have a fee filter of at least minRelayTxFee
if (GetArg("-limitfreerelay", DEFAULT_LIMITFREERELAY) <= 0)
currentFilter = std::max(currentFilter, ::minRelayTxFee.GetFeePerK());
int64_t timeNow = GetTimeMicros();
if (timeNow > pto->nextSendTimeFeeFilter) {
static CFeeRate default_feerate(DEFAULT_MIN_RELAY_TX_FEE);

Loading…
Cancel
Save