From 5dba619a241aef95344592fe0e0819874715a13f Mon Sep 17 00:00:00 2001 From: DieMyst Date: Thu, 30 Dec 2021 12:40:55 +0300 Subject: [PATCH] msg -> message --- aqua/examples/tryCatch.aqua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/aqua/examples/tryCatch.aqua b/aqua/examples/tryCatch.aqua index d34ab89..577ef62 100644 --- a/aqua/examples/tryCatch.aqua +++ b/aqua/examples/tryCatch.aqua @@ -5,7 +5,7 @@ service Unexisted("unex"): data LastError: instruction: string - msg: string + message: string peer_id: string service OpA("op"): @@ -18,7 +18,7 @@ func tryCatchTest(node_id: string) -> []string: f <- Unexisted.getStr() catch err: c: *string - f <- OpA.identity(err.msg) + f <- OpA.identity(err.message) -- check if the call takes place on the node i <- Peer.identify() f <- OpA.identity(i.external_addresses!)