| 273 | } |
| 274 | |
| 275 | void fromwire_fulfilled_htlc(const u8 **cursor, size_t *max, |
| 276 | struct fulfilled_htlc *fulfilled) |
| 277 | { |
| 278 | fulfilled->id = fromwire_u64(cursor, max); |
| 279 | fromwire_preimage(cursor, max, &fulfilled->payment_preimage); |
| 280 | } |
| 281 | |
| 282 | struct failed_htlc *fromwire_failed_htlc(const tal_t *ctx, const u8 **cursor, size_t *max) |
| 283 | { |
nothing calls this directly
no test coverage detected