mirror of
https://github.com/fluencelabs/trust-graph
synced 2024-12-04 07:10:21 +00:00
175e51d5db
* Update aqua * Update aqua-lib * Update admin aqua * Remove aqua dep * Update example aqua * Fix package.json * Update admin/package.json Co-authored-by: Aleksey Proshutinskiy <justprosh@users.noreply.github.com> * Update aqua/package.json Co-authored-by: Aleksey Proshutinskiy <justprosh@users.noreply.github.com> * Update example/package.json Co-authored-by: Aleksey Proshutinskiy <justprosh@users.noreply.github.com> * Setup fluence in CI --------- Co-authored-by: Aleksey Proshutinskiy <justprosh@users.noreply.github.com>
18 lines
378 B
Plaintext
18 lines
378 B
Plaintext
aqua Misc declares *
|
|
|
|
import "trust-graph.aqua"
|
|
|
|
alias Error: string
|
|
|
|
-- helpers for isFluencePeer
|
|
service TrustOp("op"):
|
|
array_length(a: []Trust) -> u32
|
|
|
|
service BoolOp("op"):
|
|
array_length(a: []bool) -> u32
|
|
|
|
-- check if error is not nil and append to error_stream
|
|
func append_error(error_stream: *Error, error: ?Error):
|
|
if error != nil:
|
|
error_stream <<- error!
|