| 232 | } |
| 233 | |
| 234 | void fromwire_fulfilled_htlc(const u8 **cursor, size_t *max, |
| 235 | struct fulfilled_htlc *fulfilled) |
| 236 | { |
| 237 | fulfilled->id = fromwire_u64(cursor, max); |
| 238 | fromwire_preimage(cursor, max, &fulfilled->payment_preimage); |
| 239 | } |
| 240 | |
| 241 | struct failed_htlc *fromwire_failed_htlc(const tal_t *ctx, const u8 **cursor, size_t *max) |
| 242 | { |
nothing calls this directly
no test coverage detected