remove unused

This commit is contained in:
NagyZoltanPeter 2026-06-23 11:19:16 +02:00
parent bb6eabfedb
commit b190dc98b1
No known key found for this signature in database
GPG Key ID: 3E1F97CF4A7B6F42

View File

@ -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.}