@@ -358,8 +358,8 @@ type = "priority"
358
358
recheck = {{ .Mempool.Recheck }}
359
359
360
360
# recheck_timeout is the time the application has during the rechecking process
361
- # to return CheckTx responses, once all requests have been sent. Responses that
362
- # arrive after the timeout expires are discarded. It only applies to
361
+ # to return CheckTx responses, once all requests have been sent. Responses that
362
+ # arrive after the timeout expires are discarded. It only applies to
363
363
# non-local ABCI clients and when recheck is enabled.
364
364
#
365
365
# The ideal value will strongly depend on the application. It could roughly be estimated as the
@@ -560,11 +560,9 @@ discard_abci_responses = {{ .Storage.DiscardABCIResponses}}
560
560
# to decide which txs to index based on configuration set in the application.
561
561
#
562
562
# Options:
563
- # 1) "null"
564
- # 2) "kv" (default) - the simplest possible indexer, backed by key-value storage (defaults to levelDB; see DBBackend).
565
- # - When "kv" is chosen "tx.height" and "tx.hash" will always be indexed.
566
- # 3) "psql" - the indexer services backed by PostgreSQL.
567
- # When "kv" or "psql" is chosen "tx.height" and "tx.hash" will always be indexed.
563
+ # 1) "null" (default) - index transaction status only
564
+ # 2) "kv" - index transactions using key-value storage based on DBBackend. "tx.height" and "tx.hash" will always be indexed.
565
+ # 3) "psql" - index transactions using PostgreSQL. "tx.height" and "tx.hash" will always be indexed.
568
566
indexer = "{{ .TxIndex.Indexer }}"
569
567
570
568
# The PostgreSQL connection configuration, the connection format:
0 commit comments