mirror of
https://github.com/fluencelabs/aqua-playground
synced 2025-03-16 02:41:04 +00:00
14 lines
289 B
Plaintext
14 lines
289 B
Plaintext
data Record:
|
|
relay_id: []string
|
|
peer_id: string
|
|
|
|
service Ser("ser"):
|
|
getRecord: -> Record
|
|
|
|
func bugLng79(log: string -> ()) -> u32:
|
|
stream: *Record
|
|
stream <- Ser.getRecord()
|
|
someone = stream[0]
|
|
on someone.peer_id via someone.relay_id:
|
|
a = 1 + 1
|
|
<- a |