Remove 1.25x multiplier from tx_pool
This commit is contained in:
parent
13a263894a
commit
f761dbaeaf
|
@ -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…
Reference in New Issue