replaced topic.toString with b4a.toString(topic)

This commit is contained in:
MrMasrozYTLIVE 2024-06-10 21:09:33 +03:00
parent 79bdd04810
commit 3b7f0fbd1d

View File

@ -1,5 +1,6 @@
import Hyperswarm from 'hyperswarm'; import Hyperswarm from 'hyperswarm';
import EventEmitter from 'node:events' import EventEmitter from 'node:events'
import b4a from "b4a";
class Client extends EventEmitter { class Client extends EventEmitter {
constructor(botName) { constructor(botName) {
@ -23,7 +24,7 @@ class Client extends EventEmitter {
console.log(`Connections count: ${this.swarm.connections.size} / Peers count: ${this.swarm.peers.size}`); console.log(`Connections count: ${this.swarm.connections.size} / Peers count: ${this.swarm.peers.size}`);
this.swarm.peers.forEach((peerInfo, peer) => { this.swarm.peers.forEach((peerInfo, peer) => {
console.log(`Peer ${[peer]} is in topic(s) [${[peerInfo.topics].filter(topic => topic).map(topic => topic.toString()).join(", ")}]`); console.log(`Peer ${[peer]} is in topic(s) [${[peerInfo.topics].filter(topic => topic).map(topic => b4a.toString(topic, 'hex')).join(", ")}]`);
}); });
}); });
} }