Don't check for min fee when adding tx to block
This is now done when transactions enter the pool.
This commit is contained in:
parent
232e23e90f
commit
e3b8c58496
1 changed files with 0 additions and 5 deletions
|
@ -418,11 +418,6 @@ namespace cryptonote
|
||||||
if (max_total_size < total_size + tx.second.blob_size)
|
if (max_total_size < total_size + tx.second.blob_size)
|
||||||
continue;
|
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
|
// Skip transactions that are too large
|
||||||
// TODO: Correct upper_transactions_size_limit
|
// TODO: Correct upper_transactions_size_limit
|
||||||
// such that it is based on median block size;
|
// such that it is based on median block size;
|
||||||
|
|
Loading…
Reference in a new issue