mirror of
https://github.com/bigchaindb/bigchaindb.git
synced 2024-10-13 13:34:05 +00:00
Problem: Users trying to use an incompatible version of Tendermint (#2541)
- Hard-wire the supported Tendermint version(s) right in the code of BigchainDB Server. Check the version of Tendermint and disconnect if Tendermint version is an unsupported one.
- Expose a CLI command bigchaindb tendermint-version to display the supported Tendermint versions.
- PR also takes care the long list of warnings we get when we run tests.
- Updated deprecated pymongo methods
- Do not call pytest fixtures directly.
- Also added the doc for the new cli command
This commit is contained in:
committed by
Vanshdeep Singh
parent
754730a045
commit
bd39076522
@@ -158,4 +158,17 @@ $ bigchaindb election show ELECTION_ID
|
||||
status=<status>
|
||||
```
|
||||
|
||||
The election data is the same set of arguments used in the `election new` command that originally triggered the election. `status` takes three possible values, `ongoing`, if the election has not yet reached a 2/3 majority, `concluded`, if the election reached the 2/3 majority needed to pass, or `inconclusive`, if the validator set changed while the election was in process, rendering it undecidable.
|
||||
The election data is the same set of arguments used in the `election new` command that originally triggered the election. `status` takes three possible values, `ongoing`, if the election has not yet reached a 2/3 majority, `concluded`, if the election reached the 2/3 majority needed to pass, or `inconclusive`, if the validator set changed while the election was in process, rendering it undecidable.
|
||||
|
||||
## bigchaindb tendermint-version
|
||||
|
||||
Show the Tendermint versions supported by BigchainDB server.
|
||||
```bash
|
||||
$ bigchaindb tendermint-version
|
||||
{
|
||||
"description": "BigchainDB supports the following Tendermint version(s)",
|
||||
"tendermint": [
|
||||
"0.22.8"
|
||||
]
|
||||
}
|
||||
```
|
||||
|
||||
Reference in New Issue
Block a user