mirror of
https://github.com/bigchaindb/bigchaindb.git
synced 2024-10-13 13:34:05 +00:00
Tendermint upgrade (#2666)
* migrated to tendermint 0.35.1 * increased bigchaindb_abci version * fixed API adjustments due to Tendermint upgrade Signed-off-by: Juergen Eckel <juergen@riddleandcode.com> * migrated to bigchaindb-abci == py-abci 0.7.1 Signed-off-by: Juergen Eckel <juergen@riddleandcode.com>
This commit is contained in:
@@ -59,7 +59,7 @@ you can do this:
|
||||
.. code::
|
||||
|
||||
$ mkdir $(pwd)/tmdata
|
||||
$ docker run --rm -v $(pwd)/tmdata:/tendermint/config tendermint/tendermint:0.22.8 init
|
||||
$ docker run --rm -v $(pwd)/tmdata:/tendermint/config tendermint/tendermint:v0.31.5 init
|
||||
$ cat $(pwd)/tmdata/genesis.json
|
||||
|
||||
You should see something that looks like:
|
||||
@@ -69,7 +69,7 @@ You should see something that looks like:
|
||||
{"genesis_time": "0001-01-01T00:00:00Z",
|
||||
"chain_id": "test-chain-bGX7PM",
|
||||
"validators": [
|
||||
{"pub_key":
|
||||
{"pub_key":
|
||||
{"type": "ed25519",
|
||||
"data": "4669C4B966EB8B99E45E40982B2716A9D3FA53B54C68088DAB2689935D7AF1A9"},
|
||||
"power": 10,
|
||||
|
||||
@@ -91,13 +91,13 @@ Note that installing the official package _doesn't_ also start MongoDB.
|
||||
## Install Tendermint
|
||||
|
||||
The version of BigchainDB Server described in these docs only works well
|
||||
with Tendermint 0.22.8 (not a higher version number). Install that:
|
||||
with Tendermint 0.31.5 (not a higher version number). Install that:
|
||||
|
||||
```
|
||||
sudo apt install -y unzip
|
||||
wget https://github.com/tendermint/tendermint/releases/download/v0.22.8/tendermint_0.22.8_linux_amd64.zip
|
||||
unzip tendermint_0.22.8_linux_amd64.zip
|
||||
rm tendermint_0.22.8_linux_amd64.zip
|
||||
wget https://github.com/tendermint/tendermint/releases/download/v0.31.5/tendermint_v0.31.5_linux_amd64.zip
|
||||
unzip tendermint_v0.31.5_linux_amd64.zip
|
||||
rm tendermint_v0.31.5_linux_amd64.zip
|
||||
sudo mv tendermint /usr/local/bin
|
||||
```
|
||||
|
||||
|
||||
Reference in New Issue
Block a user