You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There are 2 files controlling containing configuration parameters for the state sync, both located under the .secretd/config by default:
app.toml
config.toml
app.toml
Make sure that iavl-disable-fastnode = true. Even though the comments in the file mentions that the default is true the field is actually set to false.
# IAVLDisableFastNode enables or disables the fast node feature of IAVL. # Default is true.iavl-disable-fastnode = true
config.toml
Clean-up data of previous state-syncs
Clear tendermint state sync files from /tmp:
note: marsellus is the username
cd /tmp && ls -l /tmp | awk '$3=="marsellus" { print $9 }'| xargs rm -r
The text was updated successfully, but these errors were encountered:
Creating groups for the testnet and mainnet
We'll use
secrettest
for the testnet andsecretmain
for the mainnet.Testnet
Using
mia
as a username example, andsecrettest
as a group:State-sync of a (mainnet) node
May apply to a testnet node as well.
Configuration
There are 2 files controlling containing configuration parameters for the state sync, both located under the
.secretd/config
by default:app.toml
config.toml
app.toml
Make sure that
iavl-disable-fastnode = true
. Even though the comments in the file mentions that the default istrue
the field is actually set tofalse
.config.toml
Clean-up data of previous state-syncs
Clear tendermint state sync files from
/tmp
:note:
marsellus
is the usernameThe text was updated successfully, but these errors were encountered: