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 9f554e0 commit 4662553Copy full SHA for 4662553
src/main.cpp
@@ -6939,7 +6939,7 @@ bool SendMessages(CNode* pto, CConnman& connman)
6939
// Message: feefilter
6940
//
6941
// We don't want white listed peers to filter txs to us if we have -whitelistforcerelay
6942
- if (pto->nVersion >= FEEFILTER_VERSION && GetBoolArg("-feefilter", DEFAULT_FEEFILTER) &&
+ if (!pto->fDisconnect && pto->nVersion >= FEEFILTER_VERSION && GetBoolArg("-feefilter", DEFAULT_FEEFILTER) &&
6943
!(pto->fWhitelisted && GetBoolArg("-whitelistforcerelay", DEFAULT_WHITELISTFORCERELAY))) {
6944
CAmount currentFilter = mempool.GetMinFee(GetArg("-maxmempool", DEFAULT_MAX_MEMPOOL_SIZE) * 1000000).GetFeePerK();
6945
int64_t timeNow = GetTimeMicros();
0 commit comments