Browse Source

config.toml extensions

pull/1943/head
Greg Szabo 7 years ago
parent
commit
de4022dcce
1 changed files with 12 additions and 0 deletions
  1. +12
    -0
      ansible/roles/config/templates/config.toml.j2

+ 12
- 0
ansible/roles/config/templates/config.toml.j2 View File

@ -211,3 +211,15 @@ peer_query_maj23_sleep_duration = 2000
# 2) "kv" - the simplest possible indexer, backed by key-value storage (defaults to levelDB; see DBBackend).
indexer = "kv"
# Comma-separated list of tags to index (by default the only tag is tx hash)
#
# It's recommended to index only a subset of tags due to possible memory
# bloat. This is, of course, depends on the indexer's DB and the volume of
# transactions.
index_tags = ""
# When set to true, tells indexer to index all tags. Note this may be not
# desirable (see the comment above). IndexTags has a precedence over
# IndexAllTags (i.e. when given both, IndexTags will be indexed).
index_all_tags = false

Loading…
Cancel
Save