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:
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) {
|
||||
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 {
|
||||
|
|
Loading…
Reference in a new issue