Sanity checks * Ensure that LUX is running in a usable environment with all * necessary library support. */
| 718 | * necessary library support. |
| 719 | */ |
| 720 | bool InitSanityCheck(void) |
| 721 | { |
| 722 | if (!ECC_InitSanityCheck()) { |
| 723 | InitError("OpenSSL appears to lack support for elliptic curve cryptography. For more " |
| 724 | "information, visit https://en.bitcoin.it/wiki/OpenSSL_and_EC_Libraries"); |
| 725 | return false; |
| 726 | } |
| 727 | if (!glibc_sanity_test() || !glibcxx_sanity_test()) |
| 728 | return false; |
| 729 | |
| 730 | return true; |
| 731 | } |
| 732 | |
| 733 | bool AppInitServers() |
| 734 | { |
no test coverage detected