From 8353bcd152a85ff4ef8f56cb6be3c0bec5bc4e6f Mon Sep 17 00:00:00 2001 From: Jazz Turner-Baggs <473256+jazzz@users.noreply.github.com> Date: Tue, 17 Feb 2026 17:10:58 -0800 Subject: [PATCH] Update Echo_bot --- examples/bot_echo.nim | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/examples/bot_echo.nim b/examples/bot_echo.nim index fd2a5d2..809797d 100644 --- a/examples/bot_echo.nim +++ b/examples/bot_echo.nim @@ -8,8 +8,7 @@ import content_types proc main() {.async.} = let waku = initWakuClient(DefaultConfig()) - let ident = createIdentity("EchoBot") - var chatClient = newClient(waku, ident) + var chatClient = newClient(waku).get() chatClient.onNewMessage(proc(convo: Conversation, msg: ReceivedMessage) {.async.} = info "New Message: ", convoId = convo.id(), msg= msg