| 517 | } |
| 518 | |
| 519 | boost::filesystem::path GetConfigFile() |
| 520 | { |
| 521 | boost::filesystem::path pathConfigFile(GetArg("-conf", "bitcoin.conf")); |
| 522 | if (!pathConfigFile.is_complete()) |
| 523 | pathConfigFile = GetDataDir(false) / pathConfigFile; |
| 524 | |
| 525 | return pathConfigFile; |
| 526 | } |
| 527 | |
| 528 | void ReadConfigFile(map<string, string>& mapSettingsRet, |
| 529 | map<string, vector<string> >& mapMultiSettingsRet) |
no test coverage detected