mirror of
https://github.com/ton-blockchain/ton
synced 2025-03-09 15:40:10 +00:00
Fix parsing block limits config
This commit is contained in:
parent
1ee9e47007
commit
86d3ed97c1
1 changed files with 1 additions and 1 deletions
|
@ -684,7 +684,7 @@ bool BlockLimits::deserialize(vm::CellSlice& cs) {
|
||||||
if (!ok) {
|
if (!ok) {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
if (tag == 0x5d) {
|
if (tag == 0x5e) {
|
||||||
return collated_data.deserialize(cs) && // collated_data:ParamLimits
|
return collated_data.deserialize(cs) && // collated_data:ParamLimits
|
||||||
imported_msg_queue.deserialize(cs); // imported_msg_queue:ImportedMsgQueueLimits
|
imported_msg_queue.deserialize(cs); // imported_msg_queue:ImportedMsgQueueLimits
|
||||||
} else {
|
} else {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue