Skip to content

Commit

Permalink
taking into account clients
Browse files Browse the repository at this point in the history
  • Loading branch information
gabrielmer committed Jul 17, 2024
1 parent daf26c7 commit 2207ddb
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion waku/node/waku_node.nim
Original file line number Diff line number Diff line change
Expand Up @@ -1262,7 +1262,9 @@ proc isBootstrapOnly(node: WakuNode): bool =
if node.wakuRelay.isNil() and node.wakuStore.isNil() and node.wakuArchive.isNil() and
node.wakuLegacyStore.isNil() and node.wakuFilter.isNil() and
node.wakuRlnRelay.isNil() and node.wakuLightPush.isNil() and
node.wakuMetadata.isNil():
node.wakuMetadata.isNil() and node.wakuStoreClient.isNil() and
node.wakuLegacyStoreClient.isNil() and node.wakuFilterClient.isNil() and
node.wakuLightpushClient.isNil():
return true
else:
return false
Expand Down

0 comments on commit 2207ddb

Please sign in to comment.