Merge pull request #2023

f761dbae Remove 1.25x multiplier from tx_pool (Nano Akron)
release-v0.4.0.1
Riccardo Spagni 7 years ago
commit 69e039aa19
No known key found for this signature in database
GPG Key ID: 55432DF31CCD4FCD

@ -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.

Loading…
Cancel
Save