1
0
Fork 0
mirror of https://github.com/ton-blockchain/ton synced 2025-02-12 19:22:37 +00:00

Fix advance_ext (#746)

This commit is contained in:
Andrey Tvorozhkov 2025-01-27 14:22:00 +05:00 committed by GitHub
parent ed88f55a3d
commit 2a02b54786
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -264,7 +264,7 @@ bool CellSlice::advance_ext(unsigned bits, unsigned refs) {
} }
bool CellSlice::advance_ext(unsigned bits_refs) { bool CellSlice::advance_ext(unsigned bits_refs) {
return advance_ext(bits_refs >> 16, bits_refs & 0xffff); return advance_ext(bits_refs & 0xffff, bits_refs >> 16);
} }
// (PRIVATE) // (PRIVATE)