From 1c0177bf01a29526bc1ec3d909dbf3d8f519d940 Mon Sep 17 00:00:00 2001 From: reneespinosa Date: Tue, 26 Dec 2023 12:48:07 -0500 Subject: [PATCH] solve --- contracts/task1.fc | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/contracts/task1.fc b/contracts/task1.fc index 8f92b9d..fbc32e3 100755 --- a/contracts/task1.fc +++ b/contracts/task1.fc @@ -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() + ;;); } @@ -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) @@ -59,7 +59,7 @@ .end_cell(); send_raw_message(msg,128); - } + }