Merge PR #4198: Release v0.34.3
This commit is contained in:
parent
4a87f45bfe
commit
050f6a61ba
|
@ -1,4 +1,4 @@
|
|||
# CODEOWNERS: https://help.github.com/articles/about-codeowners/
|
||||
|
||||
# Primary repo maintainers
|
||||
* @rigelrozanski @alexanderbez @jackzampolin @alessio @cwgoes
|
||||
* @rigelrozanski @alexanderbez @jackzampolin @alessio
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue