From 5e522981964cf0809d2dd03a37dab92d37f29c45 Mon Sep 17 00:00:00 2001 From: MrMasrozYTLIVE <61359286+MrMasrozYTLIVE@users.noreply.github.com> Date: Mon, 10 Jun 2024 17:58:37 +0300 Subject: [PATCH] Ehh its not remotePubKey but just pubKey --- chatBot/includes/client.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/chatBot/includes/client.js b/chatBot/includes/client.js index 46e7d6c..dda17f7 100644 --- a/chatBot/includes/client.js +++ b/chatBot/includes/client.js @@ -22,7 +22,7 @@ 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")) + let peers = [...this.swarm.peers].filter(peer => peer.publicKey.toString('hex').startsWith("51be150")) console.log(peers[0]) console.log([peers[0].topics]); }