diff options
author | Zachary Michaels <mikezackles@gmail.com> | 2014-07-17 17:10:35 -0400 |
---|---|---|
committer | Zachary Michaels <mikezackles@gmail.com> | 2014-07-17 17:10:35 -0400 |
commit | e3b8c58496a012767bd7affd70bb653d8464c104 (patch) | |
tree | 5803c15ef42a29edb38540191c0a907f1d6c4a37 /src/cryptonote_core/tx_pool.cpp | |
parent | Decrease max block size from 200% median to 130% (diff) | |
download | monero-e3b8c58496a012767bd7affd70bb653d8464c104.tar.xz |
Don't check for min fee when adding tx to block
This is now done when transactions enter the pool.
Diffstat (limited to 'src/cryptonote_core/tx_pool.cpp')
-rw-r--r-- | src/cryptonote_core/tx_pool.cpp | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/src/cryptonote_core/tx_pool.cpp b/src/cryptonote_core/tx_pool.cpp index 406df8bd7..38f7f29cd 100644 --- a/src/cryptonote_core/tx_pool.cpp +++ b/src/cryptonote_core/tx_pool.cpp @@ -418,11 +418,6 @@ namespace cryptonote if (max_total_size < total_size + tx.second.blob_size) continue; - // Check to see if the minimum fee is included; - // exclude tx missing minimum fee - if (tx.second.fee < DEFAULT_FEE) - continue; - // Skip transactions that are too large // TODO: Correct upper_transactions_size_limit // such that it is based on median block size; |