remove tx.hash tag from config because it's mandatory

This commit is contained in:
Anton Kaliaev 2017-11-24 18:22:17 -06:00
parent f65e357d2b
commit 461a143a2b
No known key found for this signature in database
GPG Key ID: 7B6881D965918214
1 changed files with 1 additions and 1 deletions

View File

@ -428,7 +428,7 @@ type TxIndexConfig struct {
func DefaultTxIndexConfig() *TxIndexConfig {
return &TxIndexConfig{
Indexer: "kv",
IndexTags: "tx.hash", // types.TxHashKey
IndexTags: "",
}
}