mirror of
https://github.com/fluencelabs/examples
synced 2025-04-25 10:42:16 +00:00
fix word casing in aqua
This commit is contained in:
parent
4d75823232
commit
09b4472df9
@ -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)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user