Skip to content

Commit

Permalink
Merge pull request #641 from oasisprotocol/amela/update-non-validator…
Browse files Browse the repository at this point in the history
…-config-for-23.0

docs/node/non-validator: Update config file for 23.0
amela authored Nov 28, 2023

Verified

This commit was signed with the committer’s verified signature.
andrewazores Andrew Azores
2 parents fe4b647 + 9bda472 commit 6aa2dd4
Showing 1 changed file with 15 additions and 18 deletions.
33 changes: 15 additions & 18 deletions docs/node/run-your-node/non-validator-node.md
Original file line number Diff line number Diff line change
@@ -45,26 +45,23 @@ This will configure the given node to only follow the consensus layer.
In order to configure the node create the `/node/etc/config.yml` file with the following content:

```yaml
datadir: /node/data

log:
level:
default: info
tendermint: info
tendermint/context: error
format: JSON
mode: client
common:
data_dir: /node/data
log:
format: JSON
level:
cometbft: info
cometbft/context: error
default: info

genesis:
file: /node/etc/genesis.json

consensus:
tendermint:
p2p:
# List of seed nodes to connect to.
# NOTE: You can add additional seed nodes to this list if you want.
seed:
- "{{ seed_node_address }}"

file: /node/etc/genesis.json
p2p:
# List of seed nodes to connect to.
# NOTE: You can add additional seed nodes to this list if you want.
seeds:
- {{ seed_node_address }}
```
Before using this configuration you should collect the following information to replace the variables present in the configuration file:

0 comments on commit 6aa2dd4

Please sign in to comment.