You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Mar 10, 2020. It is now read-only.
* fix: swarm addrs test
If the common factory creates a node with no bootstrap nodes then getting a list of swarm addresses could be empty (or could also be empty anyway if the connection to the bootstrap nodes takes a long time). This PR spawns and connects another IPFS node to ensure that there should be swarm addresses available.
License: MIT
Signed-off-by: Alan Shaw <alan.shaw@protocol.ai>
Copy file name to clipboardexpand all lines: SPEC/SWARM.md
+3-3
Original file line number
Diff line number
Diff line change
@@ -13,18 +13,18 @@
13
13
14
14
##### `ipfs.swarm.addrs([callback])`
15
15
16
-
`callback` must follow `function (err, addrs) {}` signature, where `err` is an error if the operation was not successful. `addrs` will be an array of [`PeerInfo`](https://github.com/libp2p/js-peer-info)s.
16
+
`callback` must follow `function (err, peerInfos) {}` signature, where `err` is an error if the operation was not successful. `peerInfos` will be an array of [`PeerInfo`](https://github.com/libp2p/js-peer-info)s.
17
17
18
18
If no `callback` is passed, a promise is returned.
0 commit comments