From 0d93424c6a186e017c5268dc651753c3fb52ffe2 Mon Sep 17 00:00:00 2001 From: Anton Kaliaev Date: Thu, 10 May 2018 14:03:05 +0400 Subject: [PATCH] disable indexer by default --- config/config.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/config.go b/config/config.go index b76f5ed19..b5bd87cee 100644 --- a/config/config.go +++ b/config/config.go @@ -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, }