fix metalinter warnings

This commit is contained in:
Anton Kaliaev 2017-11-28 21:38:16 -06:00
parent 2a5e8c4a47
commit 09941b9aa9
No known key found for this signature in database
GPG Key ID: 7B6881D965918214
1 changed files with 4 additions and 5 deletions

View File

@ -85,7 +85,10 @@ func (txi *TxIndex) AddBatch(b *txindex.Batch) error {
// Index indexes a single transaction using the given list of tags.
func (txi *TxIndex) Index(result *types.TxResult) error {
batch := txindex.NewBatch(1)
batch.Add(result)
err := batch.Add(result)
if err != nil {
return errors.Wrap(err, "failed to add tx result to batch")
}
return txi.AddBatch(batch)
}
@ -342,10 +345,6 @@ func keyForTag(tag *abci.KVPair, result *types.TxResult) []byte {
}
}
func hashKey(hash []byte) string {
return fmt.Sprintf("%X", hash)
}
///////////////////////////////////////////////////////////////////////////////
// Utils