| 591 | } |
| 592 | |
| 593 | fs::path static GetAutostartFilePath() |
| 594 | { |
| 595 | ChainType chain = gArgs.GetChainType(); |
| 596 | if (chain == ChainType::MAIN) |
| 597 | return GetAutostartDir() / "bitcoin.desktop"; |
| 598 | return GetAutostartDir() / fs::u8path(strprintf("bitcoin-%s.desktop", ChainTypeToString(chain))); |
| 599 | } |
| 600 | |
| 601 | bool GetStartOnSystemStartup() |
| 602 | { |
no test coverage detected