| 43 | } |
| 44 | |
| 45 | void debug_advanceVersion(UID id, int64_t version, const char* suffix) { |
| 46 | if (!disabledMachines.count(id)) { |
| 47 | auto& entry = validationData[id.toString() + suffix]; |
| 48 | if (version > entry) |
| 49 | entry = version; |
| 50 | } |
| 51 | } |
| 52 | |
| 53 | void debug_advanceMinCommittedVersion(UID id, int64_t version) { |
| 54 | if (!g_network->isSimulated() || !g_simulator.extraDatabases.empty()) |
no test coverage detected