Add Indentity Todo

This commit is contained in:
Jazz Turner-Baggs 2026-02-11 10:21:34 -08:00
parent 13832d4e5e
commit bcc49e4bdb
No known key found for this signature in database

View File

@ -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))