I removed all of the debugging code for now to push the fix for app.js

This commit is contained in:
MrMasrozYTLIVE 2024-06-10 18:23:47 +03:00
parent d233f9e5aa
commit bfe0bafebc

View File

@ -21,13 +21,6 @@ class Client extends EventEmitter {
this.swarm.on('update', () => {
console.log(`Peers count: ${this.swarm.connections.size}`);
if(this.swarm.connections.size > 0) {
let peers = [...this.swarm.peers]
for (let peer in peers) {
console.log(peers[peer])
console.log([peers[peer].topics]);
}
}
});
}