1
0
Fork 0
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:
ton 2021-01-07 22:48:04 +03:00
parent dab7ee3f97
commit 24dc184a2e
10 changed files with 118 additions and 22 deletions

View file

@ -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 =