Skip to content

Commit

Permalink
Merge pull request #4196: Set default invariant check period to 0
Browse files Browse the repository at this point in the history
  • Loading branch information
alexanderbez committed Apr 26, 2019
2 parents 13bd5b6 + e830191 commit 08ad4f5
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 1 deletion.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion cmd/gaia/cmd/gaiad/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 08ad4f5

Please sign in to comment.