From 23c914ccfe471d3c46b5a294f14acc9db5ec4a92 Mon Sep 17 00:00:00 2001 From: Zachary Michaels Date: Thu, 17 Jul 2014 17:11:21 -0400 Subject: [PATCH] Don't check max tx size when adding to block This is now done when adding transactions to the pool. --- src/cryptonote_core/tx_pool.cpp | 8 -------- 1 file changed, 8 deletions(-) diff --git a/src/cryptonote_core/tx_pool.cpp b/src/cryptonote_core/tx_pool.cpp index 38f7f29c..5f2bc157 100644 --- a/src/cryptonote_core/tx_pool.cpp +++ b/src/cryptonote_core/tx_pool.cpp @@ -418,14 +418,6 @@ namespace cryptonote if (max_total_size < total_size + tx.second.blob_size) continue; - // Skip transactions that are too large - // TODO: Correct upper_transactions_size_limit - // such that it is based on median block size; - // We need to make a similar patch for - // wallet2.h - if (tx.second.blob_size > upper_transaction_size_limit) - continue; - // If adding this tx will make the block size // greater than CRYPTONOTE_GETBLOCKTEMPLATE_MAX // _BLOCK_SIZE bytes, reject the tx; this will