Paul

Results 7 issues of Paul

**Currently** From built-in definitions in aqua: ``` service Srv("srv"): -- ... -- Retrieves the functional interface of a service running -- on the node specified in the service call --...

refactoring
recent

I think the api should better have the following interface (debatable): ``` alias ServiceId: string data ServiceInfo: id: ServiceId blueprint_id: string owner_id: string interface: Interface service Srv("srv"): -- ... --...

needs review
recent

When compiling code into js\ts reserved words (e.g this, interface, class) should be renamed to avoid compilation errors in host language

bug

Currently nested statements are indented by 1 space everywhere the air used. That makes reading and debugging the scripts difficult (I always indent everything to 4 spaces before starting to...

enhancement
syntax

If would be nice to have logical expressions inside if statement. For example: ``` func ifElseNumCall(condition1: u32, condition2: u32): if condition1 == 1 and condition2 == 2: Println.print("it is 1...

enhancement

`FluencePeer` should seamlessly handle low and no connectivity situations. Including 1. The peer should continue to operate if the networks connections is down (particles should not be lost) 2. When...

enhancement

It would be nice to have the ability to connect to multiple relays because it could increase the applications reliability. Research topics: How to handle multiple connections at once? Is...

research