| 580 | } |
| 581 | |
| 582 | boost::filesystem::path GetConfigFile() |
| 583 | { |
| 584 | boost::filesystem::path pathConfigFile(GetArg("-conf", "lux.conf")); |
| 585 | if (!pathConfigFile.is_complete()) |
| 586 | pathConfigFile = GetDataDir(false) / pathConfigFile; |
| 587 | |
| 588 | return pathConfigFile; |
| 589 | } |
| 590 | |
| 591 | boost::filesystem::path GetMasternodeConfigFile() |
| 592 | { |
no test coverage detected