You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If you put two ~load_ref in func on the same line, it will read refs from the end. In the sandbox, everything works logically correct, reading from left to right, but it creates a difference in results with the blockchain
The text was updated successfully, but these errors were encountered:
ref1, ref2 = msg~load_ref(), msg~load_ref(); - on mainnet will be loaded from right to left. On sandbox a year ago it was loaded from left to right
So it for example we will send msg to contract like this:
begin_cell().storeRef(Cell1).storeRef(Cell2), and then try to load it in one line.
On mainnet we will see that ref1 = Cell2 and ref2 = Cell1, but on sandbox it worked like this: ref1 = Cell1, ref2 = Cell2
If you put two ~load_ref in func on the same line, it will read refs from the end. In the sandbox, everything works logically correct, reading from left to right, but it creates a difference in results with the blockchain
The text was updated successfully, but these errors were encountered: