diff --git a/src/main.cpp b/src/main.cpp index f24cfedbd..89d0338f4 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -1124,8 +1124,10 @@ bool AcceptToMemoryPool(CTxMemPool& pool, CValidationState &state, const CTransa COutPoint outpoint = tx.vin[i].prevout; if (pool.mapNextTx.count(outpoint)) { + static uint32_t counter; // Disable replacement feature for now - fprintf(stderr,"Disable replacement feature for now\n"); + if ( counter++ < 100 ) + fprintf(stderr,"Disable replacement feature for now\n"); return false; } }