| 429 | } |
| 430 | |
| 431 | void openDebugLogfile() |
| 432 | { |
| 433 | fs::path pathDebug = gArgs.GetDataDirNet() / "debug.log"; |
| 434 | |
| 435 | /* Open debug.log with the associated application */ |
| 436 | if (fs::exists(pathDebug)) |
| 437 | QDesktopServices::openUrl(QUrl::fromLocalFile(PathToQString(pathDebug))); |
| 438 | } |
| 439 | |
| 440 | bool openBitcoinConf() |
| 441 | { |
no test coverage detected