Skip to content
This repository has been archived by the owner on Apr 23, 2024. It is now read-only.

Commit

Permalink
......
Browse files Browse the repository at this point in the history
  • Loading branch information
reneespinosa committed Jan 6, 2024
1 parent c1edcbb commit 0ee4642
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions contracts/task2.fc
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,10 @@

if (op == 0x368ddef3) {

(int chain, int dir2) = cin_msg.load_msg_addr().parse_std_addr();
(int chain, int dir2) = parse_std_addr(cin_msg.load_msg_addr());
throw_unless(120, dir == dir2);
in_msg_body~load_uint(64);
(int chain, int dir3) = in_msg_body.load_msg_addr().parse_std_addr();
(int chain, int dir3) = parse_std_addr(in_msg_body.load_msg_addr());
diccionario~udict_set(256, dir3, in_msg_body);
set_data(begin_cell()
.store_uint(1 << 10, 11)
Expand Down

0 comments on commit 0ee4642

Please sign in to comment.