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/
|
# CODEOWNERS: https://help.github.com/articles/about-codeowners/
|
||||||
|
|
||||||
# Primary repo maintainers
|
# Primary repo maintainers
|
||||||
* @rigelrozanski @alexanderbez @jackzampolin @alessio @cwgoes
|
* @rigelrozanski @alexanderbez @jackzampolin @alessio
|
||||||
|
|
|
@ -1,5 +1,14 @@
|
||||||
# Changelog
|
# 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
|
## 0.34.2
|
||||||
|
|
||||||
### Improvements
|
### Improvements
|
||||||
|
|
|
@ -772,7 +772,7 @@ paths:
|
||||||
x-example: bonded
|
x-example: bonded
|
||||||
- in: query
|
- in: query
|
||||||
name: page
|
name: page
|
||||||
description: The gage number.
|
description: The page number.
|
||||||
type: integer
|
type: integer
|
||||||
x-example: 1
|
x-example: 1
|
||||||
- in: query
|
- in: query
|
||||||
|
|
|
@ -57,7 +57,7 @@ func main() {
|
||||||
// prepare and add flags
|
// prepare and add flags
|
||||||
executor := cli.PrepareBaseCmd(rootCmd, "GA", app.DefaultNodeHome)
|
executor := cli.PrepareBaseCmd(rootCmd, "GA", app.DefaultNodeHome)
|
||||||
rootCmd.PersistentFlags().UintVar(&invCheckPeriod, flagInvCheckPeriod,
|
rootCmd.PersistentFlags().UintVar(&invCheckPeriod, flagInvCheckPeriod,
|
||||||
1, "Assert registered invariants every N blocks")
|
0, "Assert registered invariants every N blocks")
|
||||||
err := executor.Execute()
|
err := executor.Execute()
|
||||||
if err != nil {
|
if err != nil {
|
||||||
// handle with #870
|
// handle with #870
|
||||||
|
|
Loading…
Reference in New Issue