mirror of
https://github.com/ton-blockchain/ton
synced 2025-03-09 15:40:10 +00:00
validator large state serialization bugfix + tdlib update for clients
This commit is contained in:
parent
dab7ee3f97
commit
24dc184a2e
10 changed files with 118 additions and 22 deletions
|
@ -375,7 +375,7 @@ td::uint64 BagOfCells::compute_sizes(int mode, int& r_size, int& o_size) {
|
|||
r_size = o_size = 0;
|
||||
return 0;
|
||||
}
|
||||
while (cell_count >= (1 << (rs << 3))) {
|
||||
while (cell_count >= (1LL << (rs << 3))) {
|
||||
rs++;
|
||||
}
|
||||
td::uint64 hashes =
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue