From 621136643c5a9b71fd4a37d5737a745d0d32f5e8 Mon Sep 17 00:00:00 2001 From: Jazz Turner-Baggs <473256+jazzz@users.noreply.github.com> Date: Wed, 11 Feb 2026 10:21:34 -0800 Subject: [PATCH] Add Indentity Todo --- src/chat/client.nim | 1 + 1 file changed, 1 insertion(+) diff --git a/src/chat/client.nim b/src/chat/client.nim index 6ffec00..41096fb 100644 --- a/src/chat/client.nim +++ b/src/chat/client.nim @@ -76,6 +76,7 @@ type ChatClient* = ref object proc newClient*(ds: WakuClient, ident: Identity): ChatClient {.raises: [IOError, ValueError].} = ## Creates new instance of a `ChatClient` with a given `WakuConfig` + ## TODO: (P1) Currently the passed in Identity is not used. Libchat Generates one for every invocation. try: var q = QueueRef(queue: newAsyncQueue[ChatPayload](10))