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

Commit

Permalink
solve
Browse files Browse the repository at this point in the history
  • Loading branch information
reneespinosa committed Dec 26, 2023
1 parent ce79ea2 commit 1c0177b
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions contracts/task1.fc
Original file line number Diff line number Diff line change
Expand Up @@ -33,14 +33,14 @@
execution_time = locked_for + now();
seqno = new_seqno;

set_data(
begin_cell()
.store_uint(public_key,256)
.store_uint(execution_time,32)
.store_slice(receiver)
.store_uint(seqno,32)
.end_cell()
);
;;set_data(
;; begin_cell()
;; .store_uint(public_key,256)
;; .store_uint(execution_time,32)
;; .store_slice(receiver)
;; .store_uint(seqno,32)
;; .end_cell()
;;);


}
Expand All @@ -50,7 +50,7 @@
throw_if(124 , execution_time < now());


if(execution_time > now()){

cell msg = begin_cell()
.store_uint(0x18, 6)
.store_slice(receiver)
Expand All @@ -59,7 +59,7 @@
.end_cell();

send_raw_message(msg,128);
}


}

Expand Down

0 comments on commit 1c0177b

Please sign in to comment.