What is the best way to understand the & and opcode transit in TEP?
from Howard
Tags were calculated via tlbc as follows (request_flag is equal to 0x7fffffff and response flag is equal to 0x80000000):
crc32('transfer query_id:uint64 new_owner:MsgAddress response_destination:MsgAddress custom_payload:Maybe ^Cell forward_amount:VarUInteger 16 forward_payload:Either Cell ^Cell = InternalMsgBody') = 0x5fcc3d14 & 0x7fffffff = 0x5fcc3d14
crc32('ownership_assigned query_id:uint64 prev_owner:MsgAddress forward_payload:Either Cell ^Cell = InternalMsgBody') = 0x85138d91 & 0x7fffffff = 0x05138d91
more....
My question is why the first and second one got different result:
- 0x5fcc3d14 & 0x7fffffff => 0x5fcc3d14 š¢
- 0x85138d91 & 0x7fffffff => 0x05138d91 ā
š Answer on TON Overflow
Jan 22, 2024, 6:29 AM