Browse Source

Merge pull request #1911 from tendermint/1901-changelog

Add missing changelog entry
pull/1925/head
Alexander Simmerl 6 years ago
committed by GitHub
parent
commit
523d29256e
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 6 deletions
  1. +2
    -0
      CHANGELOG.md
  2. +1
    -6
      docs/tendermint-core/running-in-production.md

+ 2
- 0
CHANGELOG.md View File

@ -21,6 +21,8 @@ BREAKING CHANGES:
- [tmlibs] Update to v0.9.0 and merge into `libs`
* remove `merkle` package (moved to `crypto/merkle`)
- [rpc] `syncing` is now called `catching_up`.
- [config] Remove `max_block_size_txs` and `max_block_size_bytes` in favor of
consensus params from the genesis file.
FEATURES
- [cmd] Added metrics (served under `/metrics` using a Prometheus client;


+ 1
- 6
docs/tendermint-core/running-in-production.md View File

@ -49,7 +49,7 @@ second TODO is to query the /status RPC endpoint. It provides the
necessary info: whenever the node is syncing or not, what height it is
on, etc.
```
```
curl http(s)://{ip}:{rpcPort}/status
```
@ -198,11 +198,6 @@ theres something to send its peers.
You can also try lowering `timeout_commit` (time we sleep before
proposing the next block).
- `consensus.max_block_size_txs`
By default, the maximum number of transactions per a block is 10_000.
Feel free to change it to suit your needs.
- `p2p.addr_book_strict`
By default, Tendermint checks whenever a peer's address is routable before


Loading…
Cancel
Save