| 3097 | } |
| 3098 | |
| 3099 | void htlcs_index_deleted(struct lightningd *ld, |
| 3100 | const struct channel *channel, |
| 3101 | u64 num_deleted) |
| 3102 | { |
| 3103 | wait_index_increase(ld, ld->wallet->db, |
| 3104 | WAIT_SUBSYSTEM_HTLCS, WAIT_INDEX_DELETED, |
| 3105 | num_deleted, |
| 3106 | "short_channel_id", fmt_short_channel_id(tmpctx, channel_scid_or_local_alias(channel)), |
| 3107 | NULL); |
| 3108 | } |
| 3109 | |
| 3110 | /* Fortuntely, dbids start at 1, not 0! */ |
| 3111 | u64 htlcs_index_created(struct lightningd *ld, |
nothing calls this directly
no test coverage detected