| 124 | } |
| 125 | |
| 126 | void DeleteAuthCookie() |
| 127 | { |
| 128 | try { |
| 129 | fs::remove(GetAuthCookieFile()); |
| 130 | } catch (const fs::filesystem_error& e) { |
| 131 | LogPrintf("%s: Unable to remove random auth cookie file: %s\n", __func__, e.what()); |
| 132 | } |
| 133 | } |
| 134 | |
| 135 | std::vector<UniValue> JSONRPCProcessBatchReply(const UniValue &in, size_t num) |
| 136 | { |
no test coverage detected