Merge PR #1948: enable indexing of all tags by default
This commit is contained in:
parent
ac26d33547
commit
831435ccc0
|
@ -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
|
||||
|
|
|
@ -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.
|
||||
|
|
Loading…
Reference in New Issue