chore: disable store protocol by default (#1374)

This commit is contained in:
Hanno Cornelius 2022-11-14 13:09:37 +02:00 committed by GitHub
parent cff8fb1502
commit 97eaa6919b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 4 deletions

View File

@ -196,7 +196,7 @@ type
store* {.
desc: "Enable/disable waku store protocol",
defaultValue: true,
defaultValue: false,
name: "store" }: bool
storenode* {.

View File

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