sophia/test/contracts/channel_remote_on_chain_contract_name_resolution.aes
2018-12-22 01:23:40 +01:00

10 lines
229 B
Plaintext

contract Remote =
function get : () => int
function can_resolve : (string, string) => bool
contract RemoteCall =
function remote_resolve(r : Remote, name: string, key: string) : bool =
r.can_resolve(name, key)