ligo/src/test/contracts/key_hash_comparable.ligo

10 lines
234 B
Plaintext
Raw Normal View History

type storage is record [
one : map (key_hash, nat);
two : big_map (key_hash, bool)
]
type return is list (operation) * storage
function main (const a : int; const store : storage) : return is
((nil : list (operation)), store)