Skip to content

Commit 37edaf6

Browse files
authored
fix: returning peerIds in base 64 (#3105)
1 parent c861fa9 commit 37edaf6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

library/waku_thread/inter_thread_communication/requests/peer_manager_request.nim

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,6 +83,6 @@ proc process*(
8383
## returns a comma-separated string of peerIDs that mount the given protocol
8484
let (inPeers, outPeers) = waku.node.peerManager.connectedPeers($self[].protocol)
8585
let allPeerIDs = inPeers & outPeers
86-
return ok(allPeerIDs.mapIt(it.hex()).join(","))
86+
return ok(allPeerIDs.join(","))
8787

8888
return ok("")

0 commit comments

Comments
 (0)