mirror of
https://github.com/fluencelabs/fluence-js.git
synced 2025-06-14 16:41:21 +00:00
fix(avm): avm 0.40.0 (#315)
* fix(avm): avm 0.40.0 * fix: remove avm.tgz * chore(ci): change rust-peer container * fix: nix tag typo * Update tests.yml * try increasing timeout * even more * add loggs * fix error message * increase default ttl * revert increased timeouts and ttls * chore(ci): disable DEBUG=* * chore(ci): use unstable_minimal for aqua-playground * chore(ci): fix nox image --------- Co-authored-by: Anatolios Laskaris <github_me@nahsi.dev> Co-authored-by: Artsiom Shamsutdzinau <shamsartem@gmail.com>
This commit is contained in:
@ -50,7 +50,7 @@
|
||||
"dependencies": {},
|
||||
"devDependencies": {
|
||||
"@multiformats/multiaddr": "11.3.0",
|
||||
"@fluencelabs/avm": "https://github.com/fluencelabs/js-client/raw/feat/add-signatures/avm-0.39.1-feat-VM-276-aquavm-keypair-e2816f6-1588-1.0.tgz",
|
||||
"@fluencelabs/avm": "0.40.0",
|
||||
"@fluencelabs/marine-js": "0.3.45"
|
||||
}
|
||||
}
|
||||
|
@ -18,7 +18,7 @@
|
||||
"license": "Apache-2.0",
|
||||
"dependencies": {
|
||||
"@fluencelabs/interfaces": "0.7.6",
|
||||
"@fluencelabs/avm": "https://github.com/fluencelabs/js-client/raw/feat/add-signatures/avm-0.39.1-feat-VM-276-aquavm-keypair-e2816f6-1588-1.0.tgz",
|
||||
"@fluencelabs/avm": "0.40.0",
|
||||
"@fluencelabs/marine-js": "0.3.45",
|
||||
"multiformats": "11.0.1",
|
||||
"debug": "4.3.4",
|
||||
|
@ -21,7 +21,7 @@ describe('FluenceClient usage test suite', () => {
|
||||
(call %init_peer_id% ("callback" "callback") [result])
|
||||
)
|
||||
)
|
||||
(seq
|
||||
(seq
|
||||
(call init_relay ("op" "identity") [])
|
||||
(call %init_peer_id% ("callback" "error") [%last_error%])
|
||||
)
|
||||
|
@ -111,7 +111,7 @@ export const checkConnection = async (peer: ClientPeer, ttl?: number): Promise<b
|
||||
}
|
||||
return true;
|
||||
} catch (e) {
|
||||
log.error('error on establishing connection. Relay: %s error: %j', e, peer.getRelayPeerId());
|
||||
log.error('error on establishing connection. Relay: %s error: %j', peer.getRelayPeerId(), e);
|
||||
return false;
|
||||
}
|
||||
};
|
||||
|
Reference in New Issue
Block a user