diff --git a/pool/src/transaction_pool.rs b/pool/src/transaction_pool.rs index 3d92aa1da..5471775a6 100644 --- a/pool/src/transaction_pool.rs +++ b/pool/src/transaction_pool.rs @@ -273,7 +273,6 @@ impl TransactionPool { /// full the pool is and the transaction weight. fn is_acceptable(&self, tx: &Transaction, stem: bool) -> Result<(), PoolError> { if self.total_size() > self.config.max_pool_size { - // TODO evict old/large transactions instead return Err(PoolError::OverCapacity); }