diff --git a/src/main.cpp b/src/main.cpp index 0a60de0c4..9bc05bcbc 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -1942,7 +1942,7 @@ bool AcceptToMemoryPool(CTxMemPool& pool, CValidationState &state, const CTransa // Continuously rate-limit free (really, very-low-fee) transactions // This mitigates 'penny-flooding' -- sending thousands of free transactions just to // be annoying or make others' transactions take longer to confirm. - if (fLimitFree && nFees < ::minRelayTxFee.GetFee(nSize) && !tx.IsCoinImport() && !tx.IsPegsImport()) + if (fLimitFree && nFees < ::minRelayTxFee.GetFee(nSize) && !tx.IsCoinImport() ) { static CCriticalSection csFreeLimiter; static double dFreeCount;