https://gitlab.com/tezos/tezos
Raw File
Tip revision: 6e0d170d0be8e5ae3faa19a1f98f9d0e53c37e5c authored by Thomas Letan on 04 January 2024, 08:43:47 UTC
DAL: Not being ready is a temporary error
Tip revision: 6e0d170
rooted_target.tz
storage (pair string nat) ;
parameter
  (or %root unit (or %default string nat)) ;
code { UNPAIR ;
       IF_LEFT
         { DROP ; NIL operation ; PAIR }
         { IF_LEFT
             { DIP { UNPAIR ; DROP } }
             { DUG 1; UNPAIR ; DIP { DROP } } ;
           PAIR ; NIL operation ; PAIR }
     }
back to top