From 5e30079fcd7ed3e396a5b0a7b7297087bdc3de40 Mon Sep 17 00:00:00 2001 From: Duke Date: Wed, 18 Sep 2024 11:53:40 -0400 Subject: [PATCH] IsPegsImport() always returns false --- src/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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;