Problem: default config is slow

Solution: update the suggested `config.toml` file to increase the
allowed network speed, and avoid rechecking transactions.
This commit is contained in:
vrde 2018-09-05 15:43:51 +02:00
parent cb22557771
commit f8e5e9c3b6
No known key found for this signature in database
GPG Key ID: 6581C7C39B3D397D

View File

@ -242,14 +242,18 @@ The Member must copy the `genesis.json` file in the local `.tendermint/config` d
The Member must edit the `.tendermint/config/config.toml` file and make the following changes:
```
...
moniker = "Name of our node"
create_empty_blocks = false
...
log_level = "main:info,state:info,*:error"
persistent_peers = "<Member 1 node id>@<Member 1 hostname>:26656,\
<Member 2 node id>@<Member 2 hostname>:26656,\
<Member N node id>@<Member N hostname>:26656,"
send_rate = 102400000
recv_rate = 102400000
recheck = false
```
## Member: Start MongoDB