mirror of
https://github.com/ton-blockchain/ton
synced 2025-02-12 11:12:16 +00:00
Fix advance_ext
(#746)
This commit is contained in:
parent
ed88f55a3d
commit
2a02b54786
1 changed files with 1 additions and 1 deletions
|
@ -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)
|
||||||
|
|
Loading…
Reference in a new issue