Browse Source

some fixes from review

pull/559/head
Ethan Buchman 7 years ago
parent
commit
bfecb5a135
3 changed files with 7 additions and 4 deletions
  1. +1
    -1
      CHANGELOG.md
  2. +1
    -1
      glide.yaml
  3. +5
    -2
      state/txindex/kv/kv_test.go

+ 1
- 1
CHANGELOG.md View File

@ -1,6 +1,6 @@
# Changelog
## 0.10.1 (TBD)
## 0.10.1 (June 28, 2017)
FEATURES:
- Use `--trace` to get stack traces for logged errors


+ 1
- 1
glide.yaml View File

@ -49,7 +49,7 @@ import:
- package: google.golang.org/grpc
testImport:
- package: github.com/tendermint/merkleeyes
version: develop
version: v0.2.4
subpackages:
- app
- iavl


+ 5
- 2
state/txindex/kv/kv_test.go View File

@ -45,14 +45,17 @@ func benchmarkTxIndex(txsCount int, b *testing.B) {
batch := txindex.NewBatch(txsCount)
for i := 0; i < txsCount; i++ {
txResult.Index += 1
batch.Add(*txResult)
txResult.Index += 1
}
b.ResetTimer()
for n := 0; n < b.N; n++ {
_ = indexer.AddBatch(batch)
err = indexer.AddBatch(batch)
}
if err != nil {
b.Fatal(err)
}
}


Loading…
Cancel
Save