Skip to content

Commit 187be1a

Browse files
authored
Merge pull request #1030 from cosmos/bucky/tm-0.19.5
Bucky/tm 0.19.5
2 parents 5d18d5f + 5b7b76f commit 187be1a

File tree

5 files changed

+30
-17
lines changed

5 files changed

+30
-17
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# Changelog
22

3+
## 0.17.2
4+
5+
*May 20, 2018*
6+
7+
Update to Tendermint v0.19.5 (reduce WAL use, bound the mempool and some rpcs, improve logging)
8+
39
## 0.17.1 (May 17, 2018)
410

511
Update to Tendermint v0.19.4 (fixes a consensus bug and improves logging)

Gopkg.lock

Lines changed: 12 additions & 12 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Gopkg.toml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,10 @@
6060
name = "github.com/tendermint/go-crypto"
6161
version = "~0.6.2"
6262

63+
[[override]]
64+
name = "github.com/tendermint/go-wire"
65+
version = "0.7.3"
66+
6367
[[constraint]]
6468
name = "github.com/tendermint/go-amino"
6569
version = "~0.9.9"
@@ -70,7 +74,7 @@
7074

7175
[[constraint]]
7276
name = "github.com/tendermint/tendermint"
73-
version = "0.19.4-rc0"
77+
version = "0.19.5-rc1"
7478

7579
[[override]]
7680
name = "github.com/tendermint/tmlibs"

client/tx/search.go

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,12 +61,15 @@ func searchTx(ctx context.CoreContext, cdc *wire.Codec, tags []string) ([]byte,
6161
}
6262

6363
prove := !viper.GetBool(client.FlagTrustNode)
64-
res, err := node.TxSearch(query, prove)
64+
// TODO: take these as args
65+
page := 0
66+
perPage := 100
67+
res, err := node.TxSearch(query, prove, page, perPage)
6568
if err != nil {
6669
return nil, err
6770
}
6871

69-
info, err := formatTxResults(cdc, res)
72+
info, err := formatTxResults(cdc, res.Txs)
7073
if err != nil {
7174
return nil, err
7275
}

version/version.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@ package version
77

88
const Maj = "0"
99
const Min = "17"
10-
const Fix = "1"
10+
const Fix = "2"
1111

12-
const Version = "0.17.1"
12+
const Version = "0.17.2"
1313

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

0 commit comments

Comments
 (0)