diff options
| author | Jorge Timón <[email protected]> | 2016-09-28 10:10:15 +0200 |
|---|---|---|
| committer | Jorge Timón <[email protected]> | 2016-10-01 08:12:19 +0200 |
| commit | 3450c18a125f125aec76bfef79c69317eaad935d (patch) | |
| tree | d41fdcefaab3cc63947a22d3960b22107cbb35f8 /src/util.cpp | |
| parent | Merge #8852: Mention Gitian building script in doc (Laudaa) (diff) | |
| download | discoin-3450c18a125f125aec76bfef79c69317eaad935d.tar.xz discoin-3450c18a125f125aec76bfef79c69317eaad935d.zip | |
Globals: Decouple GetConfigFile and ReadConfigFile from global mapArgs
Diffstat (limited to 'src/util.cpp')
| -rw-r--r-- | src/util.cpp | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/src/util.cpp b/src/util.cpp index 93cc0412b..c20ede622 100644 --- a/src/util.cpp +++ b/src/util.cpp @@ -518,19 +518,20 @@ void ClearDatadirCache() pathCachedNetSpecific = boost::filesystem::path(); } -boost::filesystem::path GetConfigFile() +boost::filesystem::path GetConfigFile(const std::string& confPath) { - boost::filesystem::path pathConfigFile(GetArg("-conf", BITCOIN_CONF_FILENAME)); + boost::filesystem::path pathConfigFile(confPath); if (!pathConfigFile.is_complete()) pathConfigFile = GetDataDir(false) / pathConfigFile; return pathConfigFile; } -void ReadConfigFile(map<string, string>& mapSettingsRet, +void ReadConfigFile(const std::string& confPath, + map<string, string>& mapSettingsRet, map<string, vector<string> >& mapMultiSettingsRet) { - boost::filesystem::ifstream streamConfig(GetConfigFile()); + boost::filesystem::ifstream streamConfig(GetConfigFile(confPath)); if (!streamConfig.good()) return; // No bitcoin.conf file is OK |