From cb13639b562956372ba94413870298714ac98948 Mon Sep 17 00:00:00 2001 From: Arnaud Date: Tue, 7 Oct 2025 15:09:03 +0200 Subject: [PATCH] Add missing peerAddresses --- library/codex_thread_requests/requests/node_p2p_request.nim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library/codex_thread_requests/requests/node_p2p_request.nim b/library/codex_thread_requests/requests/node_p2p_request.nim index 9bfe0409..3bdbbf97 100644 --- a/library/codex_thread_requests/requests/node_p2p_request.nim +++ b/library/codex_thread_requests/requests/node_p2p_request.nim @@ -88,7 +88,7 @@ proc process*( case self.operation of NodeP2PMsgType.CONNECT: - let res = (await connect(codex, self.peerId)) + let res = (await connect(codex, self.peerId, self.peerAddresses)) if res.isErr: error "Failed to CONNECT.", error = res.error return err($res.error)