Its not working 😭 time to debug

This commit is contained in:
MrMasrozYTLIVE 2024-06-10 20:57:32 +03:00
parent 66d684e473
commit acb5609d03

View File

@ -20,10 +20,12 @@ class Client extends EventEmitter {
});
this.swarm.on('update', () => {
console.log(`Peers count: ${this.swarm.connections.size} (${this.swarm.peers.size})`);
console.log(`Connections count: ${this.swarm.connections.size} / Peers count: ${this.swarm.peers.size}`);
this.swarm.peers.forEach((peer, peerInfo) => {
console.log(`Peer ${peer} is in topic(s) ${[peerInfo.topics].filter(topic => topic).map(topic => topic.toString('hex'))}`);
console.log([peer]);
console.log([peerInfo.topics]);
console.log(`Peer ${[peer]} is in topic(s) ${[peerInfo.topics].filter(topic => topic).map(topic => topic.toString('hex'))}`);
});
});
}