From 13a23a9c42b626d91c4ddeb0425a5654b1e6ac1a Mon Sep 17 00:00:00 2001 From: Richard Ramos Date: Sat, 15 Jul 2023 12:09:00 -0400 Subject: [PATCH] fix: add back WithWakuStore() option --- cmd/waku/node.go | 1 + 1 file changed, 1 insertion(+) diff --git a/cmd/waku/node.go b/cmd/waku/node.go index 6e71ec80..bb91ba1c 100644 --- a/cmd/waku/node.go +++ b/cmd/waku/node.go @@ -228,6 +228,7 @@ func Execute(options Options) { } if options.Store.Enable { + nodeOpts = append(nodeOpts, node.WithWakuStore()) nodeOpts = append(nodeOpts, node.WithMessageProvider(dbStore)) }