disable indexer by default

This commit is contained in:
Anton Kaliaev
2018-05-10 14:03:05 +04:00
parent efc01cf582
commit 0d93424c6a

View File

@@ -515,7 +515,7 @@ type TxIndexConfig struct {
// DefaultTxIndexConfig returns a default configuration for the transaction indexer.
func DefaultTxIndexConfig() *TxIndexConfig {
return &TxIndexConfig{
Indexer: "kv",
Indexer: "null",
IndexTags: "",
IndexAllTags: false,
}