https://gitlab.com/tezos/tezos
Raw File
Tip revision: 676e8dd5c02ce4156f6e9d3d00a34423f86b5bee authored by Gauthier SEBILLE on 03 April 2024, 09:41:51 UTC
Tezt: update expected of views.ml
Tip revision: 676e8dd
createcontract_01.tzt
code {
       CREATE_CONTRACT
         { code { DROP ; UNIT ; NIL operation ; PAIR } ;
           storage unit ;
           parameter unit }
     } ;
input {
        Stack_elt (option key_hash) None ;
        Stack_elt mutez 12 ;
        Stack_elt unit Unit
      } ;
output {
         Stack_elt
           operation
           (Create_contract
              { code { DROP ; UNIT ; NIL operation ; PAIR } ; storage unit ; parameter unit }
              None
              12
              Unit
              _) ;
         Stack_elt address _
       }
back to top