| 145 | } |
| 146 | |
| 147 | void towire_fulfilled_htlc(u8 **pptr, const struct fulfilled_htlc *fulfilled) |
| 148 | { |
| 149 | towire_u64(pptr, fulfilled->id); |
| 150 | towire_preimage(pptr, &fulfilled->payment_preimage); |
| 151 | } |
| 152 | |
| 153 | void towire_failed_htlc(u8 **pptr, const struct failed_htlc *failed) |
| 154 | { |
nothing calls this directly
no test coverage detected