From 7e57c10ec756ff8ecf797c433d0752da16d1a3c7 Mon Sep 17 00:00:00 2001 From: eupn <36292692+eupn@users.noreply.github.com> Date: Tue, 28 May 2019 00:15:47 +0700 Subject: [PATCH] Remove TODO (#2854) --- pool/src/transaction_pool.rs | 1 - 1 file changed, 1 deletion(-) 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); }