From 5fc188bd8b1b6c2e14a23f78778fcb7e3a557132 Mon Sep 17 00:00:00 2001 From: Vasco Santos Date: Thu, 28 May 2020 13:09:47 +0200 Subject: [PATCH] chore: use libp2p0.28rc0 --- package.json | 2 +- test/utils/connect-all.js | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/package.json b/package.json index 0d4680c3..7a58f6a4 100644 --- a/package.json +++ b/package.json @@ -52,7 +52,7 @@ "iso-random-stream": "^1.1.1", "it-all": "^1.0.2", "it-drain": "^1.0.1", - "libp2p": "libp2p/js-libp2p#0.28.x", + "libp2p": "^0.28.0-rc.0", "libp2p-kad-dht": "^0.19.1", "libp2p-mplex": "^0.9.2", "libp2p-secio": "^0.12.1", diff --git a/test/utils/connect-all.js b/test/utils/connect-all.js index a396d4ad..40a34e0d 100644 --- a/test/utils/connect-all.js +++ b/test/utils/connect-all.js @@ -5,7 +5,6 @@ const without = require('lodash.without') module.exports = async (nodes) => { for (const node of nodes) { for (const otherNode of without(nodes, node)) { - // TODO: set addrs await node.libp2pNode.dial(otherNode.bitswap.peerId) } }