mirror of
https://github.com/ton-blockchain/ton
synced 2025-02-12 11:12:16 +00:00
Fix printing TLB NatWidth (#1501)
This commit is contained in:
parent
2a02b54786
commit
8ffa3dd9dc
1 changed files with 1 additions and 1 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);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue