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:
commit
af529f5b4c
7 changed files with 37 additions and 30 deletions
|
@ -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);
|
||||
}
|
||||
|
||||
|
|
|
@ -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)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue