From 5b21c81215be1a4a7a343fa6220964a321ccf5e5 Mon Sep 17 00:00:00 2001 From: Gabriel mermelstein Date: Mon, 7 Jul 2025 10:34:28 +0300 Subject: [PATCH] adding isEmpty log --- library/waku_context.nim | 1 + 1 file changed, 1 insertion(+) diff --git a/library/waku_context.nim b/library/waku_context.nim index 09a2a645e..0e41837cc 100644 --- a/library/waku_context.nim +++ b/library/waku_context.nim @@ -97,6 +97,7 @@ proc sendRequestToWakuThread*( let req = WakuThreadRequest.createShared(reqType, reqContent, callback, userData) echo "------------------- sendRequestToWakuThread 3: " & $req[] ## Sending the request + echo "------------------ ctx.reqChannel.isEmpty(): ", ctx.reqChannel.isEmpty() let sentOk = ctx.reqChannel.trySend(req) if not sentOk: echo "------------------- sendRequestToWakuThread 4"