Fixed app.js not sending user ID itself and only peers it knows #5
@ -22,10 +22,9 @@ class Client extends EventEmitter {
|
||||
this.swarm.on('update', () => {
|
||||
console.log(`Peers count: ${this.swarm.connections.size}`);
|
||||
if(this.swarm.connections.size > 0) {
|
||||
let arr = [];
|
||||
[...this.swarm.peers].forEach(peer => arr.push([peer.topics]));
|
||||
console.log([...this.swarm.peers])
|
||||
console.log(arr);
|
||||
let peers = [...this.swarm.peers].filter(peer => peer.remotePublicKey.toString('hex').startsWith("51be150"))
|
||||
console.log(peers[0])
|
||||
console.log([peers[0].topics]);
|
||||
}
|
||||
});
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user