Skip to content

Commit

Permalink
Decrease block size limit even more
Browse files Browse the repository at this point in the history
  • Loading branch information
EmelyanenkoK authored Sep 14, 2024
1 parent 6318adc commit 40502c5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion validator/impl/collator.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -716,7 +716,7 @@ bool Collator::unpack_last_mc_state() {
block_limits_ = limits.move_as_ok();
LOG(INFO) << "Half size 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()
<< ", " << block_limits_->bytes.hard() << "]";
Expand Down

0 comments on commit 40502c5

Please sign in to comment.