From b190dc98b11b01231da2d0fcb71a507418507110 Mon Sep 17 00:00:00 2001 From: NagyZoltanPeter <113987313+NagyZoltanPeter@users.noreply.github.com> Date: Tue, 23 Jun 2026 11:19:16 +0200 Subject: [PATCH] remove unused --- logos_delivery/waku/waku.nim | 8 -------- 1 file changed, 8 deletions(-) diff --git a/logos_delivery/waku/waku.nim b/logos_delivery/waku/waku.nim index 7991723a1..c3e511f64 100644 --- a/logos_delivery/waku/waku.nim +++ b/logos_delivery/waku/waku.nim @@ -567,12 +567,4 @@ proc stop*(waku: Waku): Future[Result[void, string]] {.async: (raises: []).} = return ok() -proc isModeCoreAvailable*(waku: Waku): bool = - return not waku.node.wakuRelay.isNil() - -proc isModeEdgeAvailable*(waku: Waku): bool = - return - waku.node.wakuRelay.isNil() and not waku.node.wakuStoreClient.isNil() and - not waku.node.wakuFilterClient.isNil() and not waku.node.wakuLightPushClient.isNil() - {.pop.}