| 6419 | } |
| 6420 | |
| 6421 | struct db_stmt *wallet_datastore_next(const tal_t *ctx, |
| 6422 | const char **startkey, |
| 6423 | struct db_stmt *stmt, |
| 6424 | const char ***key, |
| 6425 | const u8 **data, |
| 6426 | u64 *generation) |
| 6427 | { |
| 6428 | return db_datastore_next(ctx, stmt, startkey, key, data, generation); |
| 6429 | } |
| 6430 | |
| 6431 | /* We use a different query form if we only care about a single channel. */ |
| 6432 | struct wallet_htlc_iter { |
no test coverage detected