| 862 | } |
| 863 | |
| 864 | bool CheckDataDirOption() |
| 865 | { |
| 866 | const fs::path datadir{gArgs.GetPathArg("-datadir")}; |
| 867 | return datadir.empty() || fs::is_directory(fs::absolute(datadir)); |
| 868 | } |
| 869 | |
| 870 | fs::path GetConfigFile(const std::string& confPath) |
| 871 | { |
no test coverage detected