| 305 | } |
| 306 | |
| 307 | void db_prepare_for_changes(struct db *db) |
| 308 | { |
| 309 | assert(!db->changes); |
| 310 | db->changes = tal_arr(db, const char *, 0); |
| 311 | } |
| 312 | |
| 313 | struct db *db_open(const tal_t *ctx, const char *filename) |
| 314 | { |
no outgoing calls
no test coverage detected