diff options
author | Nano Akron <nanoakron@users.noreply.github.com> | 2017-09-14 21:26:19 +0100 |
---|---|---|
committer | Nano Akron <nanoakron@users.noreply.github.com> | 2017-09-14 21:26:19 +0100 |
commit | f761dbaeaf3c7fafe757f673dd0fb8bf01742601 (patch) | |
tree | cf2870d1c69597b489921864b017bf2802b16256 | |
parent | Merge pull request #2378 (diff) | |
download | monero-f761dbaeaf3c7fafe757f673dd0fb8bf01742601.tar.xz |
Remove 1.25x multiplier from tx_pool
-rw-r--r-- | src/cryptonote_core/tx_pool.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cryptonote_core/tx_pool.cpp b/src/cryptonote_core/tx_pool.cpp index e61d95ac3..f2046e521 100644 --- a/src/cryptonote_core/tx_pool.cpp +++ b/src/cryptonote_core/tx_pool.cpp @@ -80,7 +80,7 @@ namespace cryptonote uint64_t get_transaction_size_limit(uint8_t version) { - return get_min_block_size(version) * 125 / 100 - CRYPTONOTE_COINBASE_BLOB_RESERVED_SIZE; + return get_min_block_size(version) - CRYPTONOTE_COINBASE_BLOB_RESERVED_SIZE; } // This class is meant to create a batch when none currently exists. |