Skip to content

Commit

Permalink
Merge pull request #1030 from cosmos/bucky/tm-0.19.5
Browse files Browse the repository at this point in the history
Bucky/tm 0.19.5
  • Loading branch information
ebuchman authored May 20, 2018
2 parents 5d18d5f + 5b7b76f commit 187be1a
Show file tree
Hide file tree
Showing 5 changed files with 30 additions and 17 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changelog

## 0.17.2

*May 20, 2018*

Update to Tendermint v0.19.5 (reduce WAL use, bound the mempool and some rpcs, improve logging)

## 0.17.1 (May 17, 2018)

Update to Tendermint v0.19.4 (fixes a consensus bug and improves logging)
Expand Down
24 changes: 12 additions & 12 deletions Gopkg.lock

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

6 changes: 5 additions & 1 deletion Gopkg.toml
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,10 @@
name = "github.com/tendermint/go-crypto"
version = "~0.6.2"

[[override]]
name = "github.com/tendermint/go-wire"
version = "0.7.3"

[[constraint]]
name = "github.com/tendermint/go-amino"
version = "~0.9.9"
Expand All @@ -70,7 +74,7 @@

[[constraint]]
name = "github.com/tendermint/tendermint"
version = "0.19.4-rc0"
version = "0.19.5-rc1"

[[override]]
name = "github.com/tendermint/tmlibs"
Expand Down
7 changes: 5 additions & 2 deletions client/tx/search.go
Original file line number Diff line number Diff line change
Expand Up @@ -61,12 +61,15 @@ func searchTx(ctx context.CoreContext, cdc *wire.Codec, tags []string) ([]byte,
}

prove := !viper.GetBool(client.FlagTrustNode)
res, err := node.TxSearch(query, prove)
// TODO: take these as args
page := 0
perPage := 100
res, err := node.TxSearch(query, prove, page, perPage)
if err != nil {
return nil, err
}

info, err := formatTxResults(cdc, res)
info, err := formatTxResults(cdc, res.Txs)
if err != nil {
return nil, err
}
Expand Down
4 changes: 2 additions & 2 deletions version/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@ package version

const Maj = "0"
const Min = "17"
const Fix = "1"
const Fix = "2"

const Version = "0.17.1"
const Version = "0.17.2"

// GitCommit set by build flags
var GitCommit = ""

0 comments on commit 187be1a

Please sign in to comment.