paid-services 3.13.1 → 3.13.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +1 -1
- package/package.json +1 -1
- package/trades/find_trade.js +1 -1
package/CHANGELOG.md
CHANGED
package/package.json
CHANGED
|
@@ -42,5 +42,5 @@
|
|
|
42
42
|
"integration-tests": "tap -j 2 --branches=1 --functions=1 --lines=1 --statements=1 -t 180 test/integration/*.js",
|
|
43
43
|
"test": "tap --branches=1 --functions=1 --lines=1 --statements=1 -t 60 test/actions/*.js test/balanced/*.js test/capacity/*.js test/client/*.js test/config/*.js test/p2p/*.js test/records/*.js test/respond/*.js test/server/*.js test/server/*.js test/services/*.js test/trades/*.js"
|
|
44
44
|
},
|
|
45
|
-
"version": "3.13.
|
|
45
|
+
"version": "3.13.2"
|
|
46
46
|
}
|
package/trades/find_trade.js
CHANGED
|
@@ -110,7 +110,7 @@ module.exports = ({action, ask, id, identity, lnd, logger, nodes}, cbk) => {
|
|
|
110
110
|
return cbk(null, connect.node);
|
|
111
111
|
}
|
|
112
112
|
|
|
113
|
-
const sockets =
|
|
113
|
+
const sockets = res.sockets.map(n => n.socket);
|
|
114
114
|
|
|
115
115
|
return cbk(null, {
|
|
116
116
|
id: connect.node.id,
|