ligo/src/test/contracts/get_contract.ligo

21 lines
720 B
Plaintext
Raw Normal View History

type storage is unit
type return is list (operation) * storage
function cb (const s : storage) : return is block {
const c : contract (unit) =
case (Tezos.get_contract_opt (Tezos.sender) : option (contract (unit))) of
Some (contract) -> contract
| None -> (failwith ("cb: No contract.") : contract (unit))
end
} with (list [Tezos.transaction (unit, 0tez, c)], s)
2020-01-29 14:09:02 +01:00
function cbo (const s : unit) : return is
2020-01-29 14:09:02 +01:00
block {
const c : contract (unit) =
case (Tezos.get_contract_opt (Tezos.sender) : option (contract (unit))) of
Some (contract) -> contract
| None -> (failwith ("contract not found") : contract (unit))
2020-01-29 14:09:02 +01:00
end
} with (list [Tezos.transaction (unit, 0tez, c)], s)