1
0
Fork 0
mirror of https://github.com/ton-blockchain/ton synced 2025-02-13 03:32:22 +00:00

Fix parsing block limits config

This commit is contained in:
SpyCheese 2024-05-30 18:19:38 +03:00
parent 1ee9e47007
commit 86d3ed97c1

View file

@ -684,7 +684,7 @@ bool BlockLimits::deserialize(vm::CellSlice& cs) {
if (!ok) {
return false;
}
if (tag == 0x5d) {
if (tag == 0x5e) {
return collated_data.deserialize(cs) && // collated_data:ParamLimits
imported_msg_queue.deserialize(cs); // imported_msg_queue:ImportedMsgQueueLimits
} else {