fix word casing in aqua

This commit is contained in:
Pavel Murygin 2021-07-20 15:49:56 +03:00
parent 4d75823232
commit 09b4472df9

View File

@ -7,16 +7,16 @@ data HelloComputation:
msg: string msg: string
reply: string reply: string
service Hello_world_compute: service HelloWorldCompute:
hello_world(from: string) -> HelloComputation hello_world(from: string) -> HelloComputation
service HelloWorld("HelloWorld"): service HelloWorld("HelloWorld"):
recieveHello(from: PeerId) -> string recieveHello(message: string) -> string
func sayHello(peerId: PeerId, relayPeerId: PeerId) -> string: func sayHello(peerId: PeerId, relayPeerId: PeerId) -> string:
on helloServiceNode: on helloServiceNode:
Hello_world_compute helloServiceId HelloWorldCompute helloServiceId
comp <- Hello_world_compute.hello_world(%init_peer_id%) comp <- HelloWorldCompute.hello_world(%init_peer_id%)
co on peerId via relayPeerId: co on peerId via relayPeerId:
HelloWorld.recieveHello(comp.msg) HelloWorld.recieveHello(comp.msg)