| 108 | } |
| 109 | |
| 110 | bool debug_checkMinRestoredVersion(UID id, int64_t version, std::string context, Severity sev) { |
| 111 | if (!g_network->isSimulated() || !g_simulator.extraDatabases.empty()) |
| 112 | return false; |
| 113 | return debug_checkPartRestoredVersion(id, version, context, "min", sev); |
| 114 | } |
| 115 | |
| 116 | bool debug_checkMaxRestoredVersion(UID id, int64_t version, std::string context, Severity sev) { |
| 117 | if (!g_network->isSimulated() || !g_simulator.extraDatabases.empty()) |
no test coverage detected