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
In the latest protocol version's *Config.toml*, you will find the option `sync_to_genesis`. By default, this value will be set to `true`.
156
+
In the latest protocol version's *Config.toml*, you will find the option `sync_handling`. By default, this value will be set to `ttl`, which means the node will attempt to acquire all block data to comply with time to live enforcement, but will not attempt to sync all the way back to genesis.
157
157
158
-
If you are planning to run a validator node, it is better to not sync your node to genesis. This will increase node performance. In this case, the option should be changed to:
158
+
**If you are planning to run a validator node, leave this option at the default value of `ttl`**; this will increase node performance.
159
+
160
+
If you are using the node for historical data and want to query back to genesis, then this option should be changed to:
159
161
160
162
```bash
161
-
sync_to_genesis = false
163
+
sync_handling = genesis
162
164
```
163
-
If you are using the node for historical data and want to query back to genesis, you can leave the default value in place.
In the latest protocol version's *Config.toml*, you will find the option `sync_to_genesis`. By default, this value will be set to `true`.
156
+
In the latest protocol version's *Config.toml*, you will find the option `sync_handling`. By default, this value will be set to `ttl`, which means the node will attempt to acquire all block data to comply with time to live enforcement, but will not attempt to sync all the way back to genesis.
157
157
158
-
If you are planning to run a validator node, it is better to not sync your node to genesis. This will increase node performance. In this case, the option should be changed to:
158
+
**If you are planning to run a validator node, leave this option at the default value of `ttl`**; this will increase node performance.
159
+
160
+
If you are using the node for historical data and want to query back to genesis, then this option should be changed to:
159
161
160
162
```bash
161
-
sync_to_genesis = false
163
+
sync_handling = genesis
162
164
```
163
-
If you are using the node for historical data and want to query back to genesis, you can leave the default value in place.
0 commit comments