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());