1
0
Fork 0
mirror of https://github.com/ton-blockchain/ton synced 2025-03-09 15:40:10 +00:00

Decrease block size limit even more

This commit is contained in:
EmelyanenkoK 2024-09-14 08:14:00 +03:00 committed by GitHub
parent 6318adc1af
commit 40502c5700
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -716,7 +716,7 @@ bool Collator::unpack_last_mc_state() {
block_limits_ = limits.move_as_ok(); block_limits_ = limits.move_as_ok();
LOG(INFO) << "Half size limits"; LOG(INFO) << "Half size limits";
for (auto& x : block_limits_->bytes.limits_) { for (auto& x : block_limits_->bytes.limits_) {
x /= 2; x /= 3;
} }
LOG(DEBUG) << "block limits: bytes [" << block_limits_->bytes.underload() << ", " << block_limits_->bytes.soft() LOG(DEBUG) << "block limits: bytes [" << block_limits_->bytes.underload() << ", " << block_limits_->bytes.soft()
<< ", " << block_limits_->bytes.hard() << "]"; << ", " << block_limits_->bytes.hard() << "]";