-
Notifications
You must be signed in to change notification settings - Fork 3.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update to tendermint v0.22.6 (#1798)
* Update to tendermint v0.22.6 - This was cherry-picked and fixed from develop - Updates all crypto imports for changes from v0.22.5
- Loading branch information
1 parent
029da74
commit eb032a4
Showing
42 changed files
with
230 additions
and
147 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,54 @@ | ||
## PENDING | ||
|
||
BREAKING CHANGES | ||
* Update to tendermint v0.22.5. This involves changing all of the cryptography imports. [Ref](https://github.com/tendermint/tendermint/pull/1966) | ||
* [baseapp] Msgs are no longer run on CheckTx, removed `ctx.IsCheckTx()` | ||
* [x/gov] CLI flag changed from `proposalID` to `proposal-id` | ||
* [x/stake] Fixed the period check for the inflation calculation | ||
* [x/stake] Inflation doesn't use rationals in calculation (performance boost) | ||
* [x/stake] CLI flags for identity changed from `--keybase-sig` to `--identity`, effects: | ||
* `gaiacli stake create-validator` | ||
* `gaiacli stake edit-validator` | ||
* [baseapp] NewBaseApp constructor now takes sdk.TxDecoder as argument instead of wire.Codec | ||
* [x/auth] Default TxDecoder can be found in `x/auth` rather than baseapp | ||
* \#1606 The following CLI commands have been switched to use `--from` | ||
* `gaiacli stake create-validator --address-validator` | ||
* `gaiacli stake edit-validator --address-validator` | ||
* `gaiacli stake delegate --address-delegator` | ||
* `gaiacli stake unbond begin --address-delegator` | ||
* `gaiacli stake unbond complete --address-delegator` | ||
* `gaiacli stake redelegate begin --address-delegator` | ||
* `gaiacli stake redelegate complete --address-delegator` | ||
* `gaiacli stake unrevoke [validator-address]` | ||
* `gaiacli gov submit-proposal --proposer` | ||
* `gaiacli gov deposit --depositer` | ||
* `gaiacli gov vote --voter` | ||
* [x/gov] Added tags sub-package, changed tags to use dash-case | ||
|
||
FEATURES | ||
* [lcd] Can now query governance proposals by ProposalStatus | ||
* [x/mock/simulation] Randomized simulation framework | ||
* Modules specify invariants and operations, preferably in an x/[module]/simulation package | ||
* Modules can test random combinations of their own operations | ||
* Applications can integrate operations and invariants from modules together for an integrated simulation | ||
* [baseapp] Initialize validator set on ResponseInitChain | ||
* [cosmos-sdk-cli] Added support for cosmos-sdk-cli tool under cosmos-sdk/cmd | ||
* This allows SDK users to initialize a new project repository. | ||
* [tests] Remotenet commands for AWS (awsnet) | ||
|
||
IMPROVEMENTS | ||
* [baseapp] Allow any alphanumeric character in route | ||
* [cli] Improve error messages for all txs when the account doesn't exist | ||
* [tools] Remove `rm -rf vendor/` from `make get_vendor_deps` | ||
* [x/auth] Recover ErrorOutOfGas panic in order to set sdk.Result attributes correctly | ||
* [x/stake] Add revoked to human-readable validator | ||
* [tests] Add tests to example apps in docs | ||
* [x/gov] Votes on a proposal can now be queried | ||
* [x/bank] Unit tests are now table-driven | ||
* [tests] Fixes ansible scripts to work with AWS too | ||
|
||
BUG FIXES | ||
* \#1666 Add intra-tx counter to the genesis validators | ||
* \#1797 Fix off-by-one error in slashing for downtime | ||
* \#1787 Fixed bug where Tally fails due to revoked/unbonding validator | ||
* \#1766 Fixes bad example for keybase identity |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.