Compare commits

..

No commits in common. "5d6728f39f75d3da4bb9cbf3623b1e9fe822b59a" and "2ed13e50f796ba68d2ff652e363fc328e10c0622" have entirely different histories.

2 changed files with 5 additions and 4 deletions

2
app.js
View File

@ -297,7 +297,7 @@ function sendMessage(e) {
onMessageAdded(config.userName, message, config.userAvatar);
let peersPublicKeys = [];
peersPublicKeys.push([...swarm.connections].map(peer => peer.remotePublicKey.toString('hex')).flat(1));
peersPublicKeys.push([...swarm.connections].map(peer => peer.remotePublicKey.toString('hex')));
peersPublicKeys.push(swarm.keyPair.publicKey.toString('hex'));
const messageObj = JSON.stringify({

View File

@ -22,9 +22,10 @@ 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].filter(peer => peer.remotePublicKey.toString('hex').startsWith("51be150"))
console.log(peers[0])
console.log([peers[0].topics]);
let arr = [];
[...this.swarm.peers].forEach(peer => arr.push([peer.topics]));
console.log([...this.swarm.peers])
console.log(arr);
}
});
}