From 74cc7f6efd229eb6f06b553adf97425d4ed966e7 Mon Sep 17 00:00:00 2001 From: Skydev0h Date: Wed, 24 Jan 2024 10:51:40 +0200 Subject: [PATCH] Removed throwif from the comment about seqno --- contracts/wallet_v5.fc | 1 - 1 file changed, 1 deletion(-) diff --git a/contracts/wallet_v5.fc b/contracts/wallet_v5.fc index 52e8866..a8c852b 100644 --- a/contracts/wallet_v5.fc +++ b/contracts/wallet_v5.fc @@ -171,7 +171,6 @@ cell verify_actions(cell c5) inline { ;; If public key is disabled, stored_seqno is strictly less than zero: stored_seqno < 0 ;; However, msg_seqno is uint, therefore it can be only greater or equal to zero: msg_seqno >= 0 ;; Thus, if public key is disabled, these two domains NEVER intersect, and additional check is not needed - ;; throw_if(33, stored_seqno < 0); throw_unless(33, msg_seqno == stored_seqno); throw_unless(34, subwallet_id == stored_subwallet); throw_if(36, valid_until <= now());