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
# GRPCWebEnable defines if the gRPC-web should be enabled.
223
223
# NOTE: gRPC must also be enabled, otherwise, this configuration is a no-op.
224
-
enable = true
224
+
enable = false
225
225
226
226
# Address defines the gRPC-web server address to bind to.
227
227
address = "localhost:9091"
@@ -284,10 +284,11 @@ max-txs = 5000
284
284
Here are some of the most important parameters set in the config file above:
285
285
286
286
* Set the minimal acceptable gas prices (5000ncheq).
287
-
* Keep the default pruning. See more pruning options [here](../validator-guide/pruning.md)
288
-
* Enable REST and gRPC servers
289
-
* Enable Prometheus server and reports some basic node metrics
290
-
* Keep the state sync off - could be easily turned on.
287
+
* Keep the default pruning. See more pruning options [here](../validator-guide/pruning.md).
288
+
* Enable REST and gRPC servers.
289
+
* Enable Prometheus server and reports some basic app-layer metrics.
290
+
* Enable fee sugestion feature and applies correct config paramters. This is useful feature to enforce if you plan to serve API traffic from your nodes.
291
+
* Keep the state sync off, unless you want to serve statesync snapshots from your node.
291
292
* Set the mempool limit to 5000 txs. This should be sufficient to most use-cases.
292
293
293
294
See more details about cosmos-SDK configuration [here](https://docs.cosmos.network/v0.50/learn/advanced/config).
# How long we wait after committing a block, before starting on the new
688
689
# height (this gives us a chance to receive some more precommits, even
689
690
# though we already have +2/3).
690
-
timeout_commit = "1s"
691
+
timeout_commit = "5s"
691
692
692
693
# How many blocks to look back to check existence of the node's consensus votes before joining consensus
693
694
# When non-zero, the node will panic upon restart
@@ -776,6 +777,5 @@ Let's take a look at some of the most important CometBFT configuration parameter
776
777
*`private_peer_ids` - Useful for same use-case as above. Format is comma-separated node IDs.
777
778
*`[statesync].*` - Statesync configuration, useful when starting node from scratch (to save up on storage) or recovering. We have statesync servers available at `https://eu-rpc.cheqd.net:443` and `https://ap-rpc.cheqd.net:443` for mainnet and `https://eu-rpc.cheqd.network:443` and `https://ap-rpc.cheqd.network:443` for testnet.
778
779
*`consensus.double_sign_check_height` - Some node operators experienced some issues during upgrades if this was set to any other value than 0.
779
-
*`discard_abci_responses` - If enabled, this will disable keeping ABCI responses in state storage, which should help reducing the storage requirements.
780
780
781
781
See more details about CometBFT configuration [here](https://docs.cometbft.com/v0.38/core/configuration).
0 commit comments