Skip to content

Commit

Permalink
Stage onto release/v0.24.0 (#1999)
Browse files Browse the repository at this point in the history
* Set SignedBlocksWindow back to 1000

* Merge PR #1995: upgrading ledger goclient lib

* Update version/version.go
  • Loading branch information
cwgoes authored and ebuchman committed Aug 13, 2018
1 parent 59acfe8 commit a56117e
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions Gopkg.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Gopkg.toml
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@

[[constraint]]
name = "github.com/zondax/ledger-goclient"
revision = "39ba4728c137c75718a21f9b4b3280fa31b9139b"
revision = "a05312e1c998ad831b70eea41d009654f7f95985"

[prune]
go-tests = true
Expand Down
6 changes: 3 additions & 3 deletions version/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@
package version

const Maj = "0"
const Min = "23"
const Fix = "1"
const Min = "24"
const Fix = "0"

const Version = "0.23.1"
const Version = "0.24.0"

// GitCommit set by build flags
var GitCommit = ""
4 changes: 2 additions & 2 deletions x/slashing/params.go
Original file line number Diff line number Diff line change
Expand Up @@ -66,8 +66,8 @@ var (
// TODO Temporarily set to five minutes for testnets
defaultDoubleSignUnbondDuration int64 = 60 * 5

// TODO Temporarily set to 100 blocks for testnets
defaultSignedBlocksWindow int64 = 100
// TODO Temporarily set to 1000 blocks for testnets
defaultSignedBlocksWindow int64 = 1000

// TODO Temporarily set to 10 minutes for testnets
defaultDowntimeUnbondDuration int64 = 60 * 10
Expand Down

0 comments on commit a56117e

Please sign in to comment.