Skip to content

Commit

Permalink
Fix advance_ext (#746)
Browse files Browse the repository at this point in the history
  • Loading branch information
tvorogme authored Jan 27, 2025
1 parent ed88f55 commit 2a02b54
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crypto/vm/cells/CellSlice.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -264,7 +264,7 @@ bool CellSlice::advance_ext(unsigned bits, unsigned 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)
Expand Down

0 comments on commit 2a02b54

Please sign in to comment.