From 97eaa6919b3e78b444bd3520c5eaf428ced3b974 Mon Sep 17 00:00:00 2001 From: Hanno Cornelius <68783915+jm-clius@users.noreply.github.com> Date: Mon, 14 Nov 2022 13:09:37 +0200 Subject: [PATCH] chore: disable store protocol by default (#1374) --- apps/wakunode2/config.nim | 2 +- docs/operators/how-to/configure-store.md | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/apps/wakunode2/config.nim b/apps/wakunode2/config.nim index af5f29a85..3ed681a3a 100644 --- a/apps/wakunode2/config.nim +++ b/apps/wakunode2/config.nim @@ -196,7 +196,7 @@ type store* {. desc: "Enable/disable waku store protocol", - defaultValue: true, + defaultValue: false, name: "store" }: bool storenode* {. diff --git a/docs/operators/how-to/configure-store.md b/docs/operators/how-to/configure-store.md index 691f0b8da..c00140d85 100644 --- a/docs/operators/how-to/configure-store.md +++ b/docs/operators/how-to/configure-store.md @@ -2,11 +2,11 @@ > :information_source: This instructions apply to nwaku version v0.13.0+. For versions prior to v0.13.0, check [this page](./configure-store-v0.12.0.md). -The waku store protocol is enabled by default the nwaku node. -This is controlled by the `--store` option. To disable waku store protocol on startup, specify explicitly the `--store` option set to `false`: +The waku store protocol is disabled by default the nwaku node. +This is controlled by the `--store` option. To enable waku store protocol on startup, specify explicitly the `--store` option set to `true`: ```shell -wakunode2 --store=false +wakunode2 --store=true ``` This option controls the mounting of the Waku Store protocol, meaning that your node will indicate to other peers that it supports the Waku store protocol.