BOLT #4: * - MUST fail all HTLCs in the HTLC set after some reasonable * timeout. *... * - SHOULD use `mpp_timeout` for the failure message. */
| 36 | * - SHOULD use `mpp_timeout` for the failure message. |
| 37 | */ |
| 38 | static void timeout_htlc_set(struct htlc_set *set) |
| 39 | { |
| 40 | htlc_set_fail(set, take(towire_mpp_timeout(NULL))); |
| 41 | } |
| 42 | |
| 43 | void htlc_set_fail(struct htlc_set *set, const u8 *failmsg TAKES) |
| 44 | { |
nothing calls this directly
no test coverage detected