1
0
mirror of https://github.com/bigchaindb/bigchaindb.git synced 2024-06-10 11:35:16 +02:00

Problem: Tendermint creates empty blocks in the Docker-based setup. See #2204. (#2265)

Solution: Set the --consensus.create_empty_blocks=false option in docker-compose.yml.
This commit is contained in:
Lev Berman 2018-05-04 12:02:22 +02:00 committed by vrde
parent 63635f12fc
commit 3eb0b15aa0

View File

@ -53,7 +53,7 @@ services:
ports: ports:
- "46656" - "46656"
- "46657" - "46657"
command: sh -c "tendermint init && tendermint node --proxy_app=tcp://bigchaindb:46658" command: sh -c "tendermint init && tendermint node --consensus.create_empty_blocks=false --proxy_app=tcp://bigchaindb:46658"
bdb: bdb:
image: busybox image: busybox
depends_on: depends_on: