| 1403 | } |
| 1404 | |
| 1405 | fs::path AbsPathForConfigVal(const fs::path& path, bool net_specific) |
| 1406 | { |
| 1407 | if (path.is_absolute()) { |
| 1408 | return path; |
| 1409 | } |
| 1410 | return fsbridge::AbsPathJoin(net_specific ? gArgs.GetDataDirNet() : gArgs.GetDataDirBase(), path); |
| 1411 | } |
| 1412 | |
| 1413 | void ScheduleBatchPriority() |
| 1414 | { |
no test coverage detected