Skip to content

Commit

Permalink
bla
Browse files Browse the repository at this point in the history
  • Loading branch information
Skydev0h committed Dec 26, 2023
1 parent 0da728a commit 53f848d
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions contracts/task3.fc
Original file line number Diff line number Diff line change
Expand Up @@ -67,8 +67,6 @@ cell migrate_one(cell old_storage) { return old_storage; }
version = next;
}

set_c3(expected_code.begin_parse().bless());
set_code(expected_code);
{-
set_data(begin_cell()
.store_uint(version, 32)
Expand All @@ -77,8 +75,11 @@ cell migrate_one(cell old_storage) { return old_storage; }
);
commit();
-}
} else {
throw_unless(200, expected_code.null?());
}

ifnot (expected_code.null?()) {
set_c3(expected_code.begin_parse().bless());
set_code(expected_code);
}

storage = process_message(storage, msg_value, balance, in_msg_full, payload.begin_parse());
Expand Down

0 comments on commit 53f848d

Please sign in to comment.