Skip to content

Commit

Permalink
fix: returning peerIds in base 64 (#3105)
Browse files Browse the repository at this point in the history
  • Loading branch information
gabrielmer authored Oct 10, 2024
1 parent c861fa9 commit 37edaf6
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -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("")

0 comments on commit 37edaf6

Please sign in to comment.