| 53 | } |
| 54 | |
| 55 | u64 forward_index_update_status(struct lightningd *ld, |
| 56 | enum forward_status status, |
| 57 | struct short_channel_id in_channel, |
| 58 | u64 in_htlc_id, |
| 59 | struct amount_msat in_amount, |
| 60 | const struct short_channel_id *out_channel) |
| 61 | { |
| 62 | return forward_index_inc(ld, status, in_channel, in_htlc_id, |
| 63 | &in_amount, out_channel, |
| 64 | WAIT_INDEX_UPDATED); |
| 65 | } |
| 66 | |
| 67 | bool string_to_forward_status(const char *status_str, |
| 68 | size_t len, |
nothing calls this directly
no test coverage detected