This commit is contained in:
jl777
2018-04-22 00:08:08 +03:00
parent 8999ab66f1
commit d6eb511b21

View File

@@ -1294,10 +1294,10 @@ bool AcceptToMemoryPool(CTxMemPool& pool, CValidationState &state, const CTransa
COutPoint outpoint = tx.vin[i].prevout; COutPoint outpoint = tx.vin[i].prevout;
if (pool.mapNextTx.count(outpoint)) if (pool.mapNextTx.count(outpoint))
{ {
static uint32_t counter; //static uint32_t counter;
// Disable replacement feature for now // Disable replacement feature for now
//if ( counter++ < 100 ) //if ( counter++ < 100 )
fprintf(stderr,"Disable replacement feature for now\n"); //fprintf(stderr,"Disable replacement feature for now\n");
return false; return false;
} }
} }