| 589 | } |
| 590 | |
| 591 | boost::filesystem::path GetMasternodeConfigFile() |
| 592 | { |
| 593 | boost::filesystem::path pathConfigFile(GetArg("-mnconf", "masternode.conf")); |
| 594 | if (!pathConfigFile.is_complete()) pathConfigFile = GetDataDir() / pathConfigFile; |
| 595 | return pathConfigFile; |
| 596 | } |
| 597 | |
| 598 | void ReadConfigFile(map<string, string>& mapSettingsRet, |
| 599 | map<string, vector<string> >& mapMultiSettingsRet) |
no test coverage detected