msg -> message

This commit is contained in:
DieMyst 2021-12-30 12:40:55 +03:00
parent 47787fe5f0
commit 5dba619a24

View File

@ -5,7 +5,7 @@ service Unexisted("unex"):
data LastError: data LastError:
instruction: string instruction: string
msg: string message: string
peer_id: string peer_id: string
service OpA("op"): service OpA("op"):
@ -18,7 +18,7 @@ func tryCatchTest(node_id: string) -> []string:
f <- Unexisted.getStr() f <- Unexisted.getStr()
catch err: catch err:
c: *string c: *string
f <- OpA.identity(err.msg) f <- OpA.identity(err.message)
-- check if the call takes place on the node -- check if the call takes place on the node
i <- Peer.identify() i <- Peer.identify()
f <- OpA.identity(i.external_addresses!) f <- OpA.identity(i.external_addresses!)