`PUSHINT 10` is shown as `-6 PUSHINT`. Example contract: https://tonscan.org/address/EQArNPVIjXw_ffWPuGp_61zWtIH3tzBTBnHe9ToZ4m8OkoNf#source Code displayed on tonscan: ```fift SETCP0 (:methods recv_internal: recv_external: 3 BLKDROP 10000000 PUSHINT LESS IFRET ACCEPT 0 PUSHINT -6 PUSHINT ... ``` Code displayed on dton.io: ```fift SETCP 0 DICTPUSHCONST 19, (xC_) DICTIGETJMPZ { -1 => <{ BLKDROP 3 PUSHINT 10000000 LESS IFRET ACCEPT PUSHINT 0 PUSHINT 10 ... ``` The relevant part of contract code uses only 10 and not -6: ```func () recv_external(int balance, int msg_value, cell msg_full, slice in_msg) { if (balance < 10 * 1000 * 1000) { return (); } accept_message(); send_raw_message(begin_cell() .store_uint(0xA, 4) ... ```
PUSHINT 10is shown as-6 PUSHINT.Example contract: https://tonscan.org/address/EQArNPVIjXw_ffWPuGp_61zWtIH3tzBTBnHe9ToZ4m8OkoNf#source
Code displayed on tonscan:
Code displayed on dton.io:
The relevant part of contract code uses only 10 and not -6: