| 6409 | } |
| 6410 | |
| 6411 | struct db_stmt *wallet_datastore_first(const tal_t *ctx, |
| 6412 | struct wallet *w, |
| 6413 | const char **startkey, |
| 6414 | const char ***key, |
| 6415 | const u8 **data, |
| 6416 | u64 *generation) |
| 6417 | { |
| 6418 | return db_datastore_first(ctx, w->db, startkey, key, data, generation); |
| 6419 | } |
| 6420 | |
| 6421 | struct db_stmt *wallet_datastore_next(const tal_t *ctx, |
| 6422 | const char **startkey, |
no test coverage detected