| 2205 | } |
| 2206 | |
| 2207 | bool AbortNode(const string &strMessage) { |
| 2208 | strMiscWarning = strMessage; |
| 2209 | LogPrint(BCLog::ERROR, "Detect abort ERROR! *** %s\n", strMessage); |
| 2210 | StartShutdown(); |
| 2211 | |
| 2212 | return false; |
| 2213 | } |
| 2214 | |
| 2215 | bool CheckDiskSpace(uint64_t nAdditionalBytes) { |
| 2216 | uint64_t nFreeBytesAvailable = filesystem::space(GetDataDir()).available; |
no outgoing calls
no test coverage detected