HTLC-specific wrappers */
| 424 | |
| 425 | /* HTLC-specific wrappers */ |
| 426 | static void htlc_set_fulfill_htlc(struct htlc_in *hin, |
| 427 | const struct preimage *preimage) |
| 428 | { |
| 429 | /* mark that we filled -- needed for tagging coin mvt */ |
| 430 | hin->we_filled = tal(hin, bool); |
| 431 | *hin->we_filled = true; |
| 432 | fulfill_htlc(hin, preimage); |
| 433 | } |
| 434 | |
| 435 | static void handle_localpay(struct htlc_in *hin, |
| 436 | struct amount_msat amt_to_forward, |
nothing calls this directly
no test coverage detected