Release v0.34.3

This commit is contained in:
Alexander Bezobchuk 2019-04-26 11:01:10 -04:00 committed by Jack Zampolin
parent 13bd5b62cf
commit 1127446f71
3 changed files with 11 additions and 2 deletions

View File

@ -1,5 +1,14 @@
# Changelog
## 0.34.3
### Bug Fixes
#### Gaia
* [\#4196](https://github.com/cosmos/cosmos-sdk/pull/4196) Set default invariant
check period to zero.
## 0.34.2
### Improvements

View File

@ -772,7 +772,7 @@ paths:
x-example: bonded
- in: query
name: page
description: The gage number.
description: The page number.
type: integer
x-example: 1
- in: query

View File

@ -57,7 +57,7 @@ func main() {
// prepare and add flags
executor := cli.PrepareBaseCmd(rootCmd, "GA", app.DefaultNodeHome)
rootCmd.PersistentFlags().UintVar(&invCheckPeriod, flagInvCheckPeriod,
1, "Assert registered invariants every N blocks")
0, "Assert registered invariants every N blocks")
err := executor.Execute()
if err != nil {
// handle with #870