| 7199 | } |
| 7200 | |
| 7201 | uint32_t Transaction::getSize() { |
| 7202 | auto s = tr.transaction.mutations.expectedSize() + tr.transaction.read_conflict_ranges.expectedSize() + |
| 7203 | tr.transaction.write_conflict_ranges.expectedSize(); |
| 7204 | return s; |
| 7205 | } |
| 7206 | |
| 7207 | Future<Void> Transaction::onError(Error const& e) { |
| 7208 | if (g_network->isSimulated() && ++trState->numErrors % 10 == 0) { |
nothing calls this directly
no test coverage detected