diff --git a/library/waku_thread/inter_thread_communication/requests/peer_manager_request.nim b/library/waku_thread/inter_thread_communication/requests/peer_manager_request.nim index 189b490ad..5736d2542 100644 --- a/library/waku_thread/inter_thread_communication/requests/peer_manager_request.nim +++ b/library/waku_thread/inter_thread_communication/requests/peer_manager_request.nim @@ -83,6 +83,6 @@ proc process*( ## returns a comma-separated string of peerIDs that mount the given protocol let (inPeers, outPeers) = waku.node.peerManager.connectedPeers($self[].protocol) let allPeerIDs = inPeers & outPeers - return ok(allPeerIDs.mapIt(it.hex()).join(",")) + return ok(allPeerIDs.join(",")) return ok("")