diff --git a/lib/bcoin/mempool.js b/lib/bcoin/mempool.js index 37b08775..85af20c6 100644 --- a/lib/bcoin/mempool.js +++ b/lib/bcoin/mempool.js @@ -612,15 +612,12 @@ Mempool.prototype.addTX = function addTX(tx, callback, force) { return callback(err); if (!tx.hasCoins()) { - // if (tx.getSize() > 5000) - // return callback(); if (self.totalSize > constants.mempool.MAX_MEMPOOL_SIZE) { return callback(new VerifyError(tx, 'insufficientfee', 'mempool full', 0)); } - bcoin.debug('Added orphan %s to mempool.', tx.rhash); return self.storeOrphan(tx, callback); }