Decrease max block size from 200% median to 130%

release-v0.4.0.1
Zachary Michaels 10 years ago
parent c017bb0656
commit 232e23e90f

@ -390,7 +390,9 @@ namespace cryptonote
total_size = 0;
fee = 0;
size_t max_total_size = 2 * median_size - CRYPTONOTE_COINBASE_BLOB_RESERVED_SIZE; // Max block size
// Maximum block size is 130% of the median block size. This gives a
// little extra headroom for the max size transaction.
size_t max_total_size = (130 * median_size) / 100 - CRYPTONOTE_COINBASE_BLOB_RESERVED_SIZE;
std::unordered_set<crypto::key_image> k_images;
// Tx size limit as in wallet2.h

Loading…
Cancel
Save