Browse Source

fix test_integrations error

pull/442/head
Rigel Rozanski 8 years ago
committed by Ethan Buchman
parent
commit
7bb638e3b8
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      config/tendermint/config.go

+ 2
- 2
config/tendermint/config.go View File

@ -48,9 +48,9 @@ func GetConfig(rootDir string) *viper.Viper {
config.SetConfigName("config")
config.SetConfigType("toml")
config.AddConfigPath(rootDir)
err := viper.ReadInConfig()
err := config.ReadInConfig()
if err != nil {
Exit(Fmt("Could not read config: %v", err))
Exit(Fmt("Could not read config from directory %v: %v", rootDir, err))
}
//config.WatchConfig()


Loading…
Cancel
Save