From da797cdf7ac64e661ea33daa623934533005decd Mon Sep 17 00:00:00 2001 From: lateminer Date: Sun, 30 Sep 2018 19:17:41 +0300 Subject: [PATCH] Remove unnecessary argument in GetConfigFile() --- src/qt/guiutil.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/qt/guiutil.cpp b/src/qt/guiutil.cpp index cbe2bf833..0fcc5c23d 100644 --- a/src/qt/guiutil.cpp +++ b/src/qt/guiutil.cpp @@ -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);