| 28 | } |
| 29 | |
| 30 | void forward_index_deleted(struct lightningd *ld, |
| 31 | enum forward_status status, |
| 32 | struct short_channel_id in_channel, |
| 33 | u64 in_htlc_id, |
| 34 | const struct amount_msat *in_amount, |
| 35 | const struct short_channel_id *out_channel) |
| 36 | { |
| 37 | forward_index_inc(ld, status, in_channel, in_htlc_id, |
| 38 | in_amount, out_channel, |
| 39 | WAIT_INDEX_DELETED); |
| 40 | } |
| 41 | |
| 42 | /* Fortuntely, dbids start at 1, not 0! */ |
| 43 | u64 forward_index_created(struct lightningd *ld, |
nothing calls this directly
no test coverage detected