| 123 | } |
| 124 | |
| 125 | void towire_fulfilled_htlc(u8 **pptr, const struct fulfilled_htlc *fulfilled) |
| 126 | { |
| 127 | towire_u64(pptr, fulfilled->id); |
| 128 | towire_preimage(pptr, &fulfilled->payment_preimage); |
| 129 | } |
| 130 | |
| 131 | void towire_failed_htlc(u8 **pptr, const struct failed_htlc *failed) |
| 132 | { |
nothing calls this directly
no test coverage detected