1
0
Fork 0
mirror of https://github.com/ton-blockchain/ton synced 2025-03-09 15:40:10 +00:00

Merge branch 'testnet' into accelerator

This commit is contained in:
SpyCheese 2025-01-27 15:23:11 +03:00
commit af529f5b4c
7 changed files with 37 additions and 30 deletions

View file

@ -45,7 +45,7 @@ bool Bool::print_skip(PrettyPrinter& pp, vm::CellSlice& cs) const {
}
bool NatWidth::print_skip(PrettyPrinter& pp, vm::CellSlice& cs) const {
long long value = (long long)cs.fetch_ulong(32);
long long value = (long long)cs.fetch_ulong(n);
return value >= 0 && pp.out_int(value);
}

View file

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