Remove unnecessary argument in GetConfigFile()

This commit is contained in:
lateminer
2018-09-30 19:17:41 +03:00
parent 286cf0989b
commit da797cdf7a

View File

@@ -480,7 +480,7 @@ void openDebugLogfile()
bool openBitcoinConf()
{
boost::filesystem::path pathConfig = GetConfigFile(BITCOIN_CONF_FILENAME);
boost::filesystem::path pathConfig = GetConfigFile();
/* Create the file */
boost::filesystem::ofstream configFile(pathConfig, std::ios_base::app);