From 377a12089398eeb1b58e7dd5fb59336eef3be773 Mon Sep 17 00:00:00 2001 From: Gabriel mermelstein Date: Mon, 28 Oct 2024 16:15:48 +0200 Subject: [PATCH] fixing libwaku's dns discovery multiaddress generation --- .../inter_thread_communication/requests/discovery_request.nim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library/waku_thread/inter_thread_communication/requests/discovery_request.nim b/library/waku_thread/inter_thread_communication/requests/discovery_request.nim index 11733fe436..7463807556 100644 --- a/library/waku_thread/inter_thread_communication/requests/discovery_request.nim +++ b/library/waku_thread/inter_thread_communication/requests/discovery_request.nim @@ -91,7 +91,7 @@ proc retrieveBootstrapNodes( for discPeer in discoveredPeers: for address in discPeer.addrs: - multiAddresses.add($address & "/" & $discPeer) + multiAddresses.add($address & "/p2p/" & $discPeer) return ok(multiAddresses)