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.
2 parents 7490ae8 + 4662553 commit c390640Copy full SHA for c390640
src/main.cpp
@@ -6967,7 +6967,7 @@ bool SendMessages(CNode* pto, CConnman& connman)
6967
// Message: feefilter
6968
//
6969
// We don't want white listed peers to filter txs to us if we have -whitelistforcerelay
6970
- if (pto->nVersion >= FEEFILTER_VERSION && GetBoolArg("-feefilter", DEFAULT_FEEFILTER) &&
+ if (!pto->fDisconnect && pto->nVersion >= FEEFILTER_VERSION && GetBoolArg("-feefilter", DEFAULT_FEEFILTER) &&
6971
!(pto->fWhitelisted && GetBoolArg("-whitelistforcerelay", DEFAULT_WHITELISTFORCERELAY))) {
6972
CAmount currentFilter = mempool.GetMinFee(GetArg("-maxmempool", DEFAULT_MAX_MEMPOOL_SIZE) * 1000000).GetFeePerK();
6973
int64_t timeNow = GetTimeMicros();
0 commit comments