We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c861fa9 commit 37edaf6Copy full SHA for 37edaf6
library/waku_thread/inter_thread_communication/requests/peer_manager_request.nim
@@ -83,6 +83,6 @@ proc process*(
83
## returns a comma-separated string of peerIDs that mount the given protocol
84
let (inPeers, outPeers) = waku.node.peerManager.connectedPeers($self[].protocol)
85
let allPeerIDs = inPeers & outPeers
86
- return ok(allPeerIDs.mapIt(it.hex()).join(","))
+ return ok(allPeerIDs.join(","))
87
88
return ok("")
0 commit comments