Merge PR #1948: enable indexing of all tags by default

This commit is contained in:
Alessio Treglia 2018-08-10 14:40:21 +01:00 committed by Christopher Goes
parent ac26d33547
commit 831435ccc0
2 changed files with 2 additions and 0 deletions

View File

@ -63,6 +63,7 @@ IMPROVEMENTS
* [tests] \#1806 CLI tests are now behind the build flag 'cli_test', so go test works on a new repo
* [x/gov] Initial governance parameters can now be set in the genesis file
* [x/stake] \#1815 Sped up the processing of `EditValidator` txs.
* [server] \#1930 Transactions indexer indexes all tags by default.
BUG FIXES
* \#1666 Add intra-tx counter to the genesis validators

View File

@ -84,6 +84,7 @@ func interceptLoadConfig() (conf *cfg.Config, err error) {
conf.ProfListenAddress = "localhost:6060"
conf.P2P.RecvRate = 5120000
conf.P2P.SendRate = 5120000
conf.TxIndex.IndexAllTags = true
conf.Consensus.TimeoutCommit = 5000
cfg.WriteConfigFile(configFilePath, conf)
// Fall through, just so that its parsed into memory.