From 461a143a2bccc446231229f8ec85e350e8ed62f5 Mon Sep 17 00:00:00 2001 From: Anton Kaliaev Date: Fri, 24 Nov 2017 18:22:17 -0600 Subject: [PATCH] remove tx.hash tag from config because it's mandatory --- config/config.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/config.go b/config/config.go index 97d55ff8..8b1c0e28 100644 --- a/config/config.go +++ b/config/config.go @@ -428,7 +428,7 @@ type TxIndexConfig struct { func DefaultTxIndexConfig() *TxIndexConfig { return &TxIndexConfig{ Indexer: "kv", - IndexTags: "tx.hash", // types.TxHashKey + IndexTags: "", } }