https://gitlab.com/tezos/tezos
Raw File
Tip revision: b8772902f7efed80f8f7884d6706ba33bd0018f2 authored by Mehdi Bouaziz on 16 January 2024, 13:59:13 UTC
Proto: Changes to commentary for allow_forged_tickets
Tip revision: b877290
pack_operation.tz
parameter unit;
storage unit;
code { DROP;
       UNIT; # starting storage for contract
       AMOUNT;                   # Push the starting balance
       NONE key_hash;                 # No delegate
       CREATE_CONTRACT          # Create the contract
         { parameter unit ;
           storage unit ;
           code
             { CDR;
               NIL operation;
               PAIR; } };
       DIP { DROP };
       # invalid PACK
       PACK;
       DROP;
       UNIT;
       NIL operation;
       PAIR; }
back to top