tx_pool: make the max tx size a consensus rule from v8

This commit is contained in:
moneromooo-monero 2018-09-13 09:01:05 +00:00
parent e6d36c1701
commit 1660b0e72c
No known key found for this signature in database
GPG key ID: 686F07454D6CEFC3

View file

@ -185,7 +185,7 @@ namespace cryptonote
} }
size_t tx_weight_limit = get_transaction_weight_limit(version); size_t tx_weight_limit = get_transaction_weight_limit(version);
if (!kept_by_block && tx_weight > tx_weight_limit) if ((!kept_by_block || version >= HF_VERSION_PER_BYTE_FEE) && tx_weight > tx_weight_limit)
{ {
LOG_PRINT_L1("transaction is too heavy: " << tx_weight << " bytes, maximum weight: " << tx_weight_limit); LOG_PRINT_L1("transaction is too heavy: " << tx_weight << " bytes, maximum weight: " << tx_weight_limit);
tvc.m_verifivation_failed = true; tvc.m_verifivation_failed = true;