We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cb5d61b commit 873a883Copy full SHA for 873a883
1 file changed
src/Features/Blockcore.Features.MemoryPool/MempoolBehavior.cs
@@ -573,10 +573,9 @@ public async Task SendTrickleAsync()
573
this.logger.LogDebug("Transaction ID '{0}' not added to inventory list, no longer in mempool.", hash);
574
transactionsToSend.Remove(hash);
575
}
576
-
577
- // Peer told you to not send transactions at that feerate? Don't bother sending it.
578
- if (txInfo.Fee < filterrate.GetFee((int)txInfo.Size))
+ else if (txInfo.Fee < filterrate.GetFee((int)txInfo.Size))
579
{
+ // Peer told you to not send transactions at that feerate? Don't bother sending it.
580
this.logger.LogDebug("Transaction ID '{0}' not added to inventory list, bellow peers fee filter.", hash);
581
582
0 commit comments