Lol it actually was inverted for some reason
This commit is contained in:
parent
230cdd1321
commit
340362872f
@ -22,10 +22,10 @@ class Client extends EventEmitter {
|
|||||||
this.swarm.on('update', () => {
|
this.swarm.on('update', () => {
|
||||||
console.log(`Connections count: ${this.swarm.connections.size} / Peers count: ${this.swarm.peers.size}`);
|
console.log(`Connections count: ${this.swarm.connections.size} / Peers count: ${this.swarm.peers.size}`);
|
||||||
|
|
||||||
this.swarm.peers.forEach((peer, peerInfo) => {
|
this.swarm.peers.forEach((peerInfo, peer) => {
|
||||||
console.log([peer]);
|
console.log([peer]);
|
||||||
console.log([peerInfo]);
|
console.log([peerInfo]);
|
||||||
console.log(`Peer ${[peer]} is in topic(s) ${[peer.topics].filter(topic => topic).map(topic => topic.toString('hex'))}`);
|
console.log(`Peer ${[peer]} is in topic(s) [${[peer.topics].filter(topic => topic).map(topic => topic.toString('hex')).join(", ")}]`);
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user