config use fixups

This commit is contained in:
William Banfield
2022-08-16 14:38:11 -04:00
parent 8c2c2f25b5
commit dd1e24b21c
3 changed files with 14 additions and 11 deletions

View File

@@ -87,7 +87,7 @@ proxy_app = "{{ .BaseConfig.ProxyApp }}"
# A custom human readable name for this node
moniker = "{{ .BaseConfig.Moniker }}"
# If this node is many blocks behind the tip of the chain, FastSync
# If this node is many blocks behind the tip of the chain, BlockSync
# allows them to catchup quickly by downloading blocks in parallel
# and verifying their commits
block_sync = {{ .BaseConfig.BlockSyncMode }}
@@ -429,7 +429,7 @@ chunk_request_timeout = "{{ .StateSync.ChunkRequestTimeout }}"
chunk_fetchers = "{{ .StateSync.ChunkFetchers }}"
#######################################################
### Block Sync Configuration Connections ###
### Block Sync Configuration Options ###
#######################################################
[blocksync]

View File

@@ -34,13 +34,16 @@ other than v0 have been deprecated in favor of the simplest and most well unders
```toml
#######################################################
### Block Sync Configuration Connections ###
### Block Sync Configuration Options ###
#######################################################
[blocksync]
# Block Sync version to use:
# 1) "v0" (default) - the legacy fast sync implementation
# All other versions have been deprecated and will error if used.
#
# In v0.37, v1 and v2 of the block sync protocols were deprecated.
# Please use v0 instead.
#
# 1) "v0" - the default block sync implementation
version = "v0"
```

View File

@@ -319,16 +319,16 @@ trust_period = "0s"
temp_dir = ""
#######################################################
### Fast Sync Configuration Connections ###
### Block Sync Configuration Options ###
#######################################################
[fastsync]
[blocksync]
# Fast Sync version to use:
#
# In v0.37, the v1 and v2 fast sync protocols were deprecated.
# Block Sync version to use:
#
# In v0.37, v1 and v2 of the block sync protocols were deprecated.
# Please use v0 instead.
#
# 1) "v0" (default) - the legacy fast sync implementation
# 1) "v0" - the default block sync implementation
version = "v0"
#######################################################