1
0
Fork 0
mirror of https://git.wownero.com/wownero/wownero.git synced 2024-08-15 01:03:23 +00:00

Merge pull request

f761dbae Remove 1.25x multiplier from tx_pool (Nano Akron)
This commit is contained in:
Riccardo Spagni 2017-09-18 13:11:57 +02:00
commit 69e039aa19
No known key found for this signature in database
GPG key ID: 55432DF31CCD4FCD

View file

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