| 4717 | } |
| 4718 | |
| 4719 | struct db_stmt *payments_next(struct wallet *w, |
| 4720 | struct db_stmt *stmt) |
| 4721 | { |
| 4722 | if (!db_step(stmt)) |
| 4723 | return tal_free(stmt); |
| 4724 | |
| 4725 | return stmt; |
| 4726 | } |
| 4727 | |
| 4728 | void wallet_htlc_sigs_save(struct wallet *w, u64 channel_id, |
| 4729 | const struct bitcoin_signature *htlc_sigs) |
no test coverage detected