| 11 | } |
| 12 | |
| 13 | void fromwire_htlc_stub(const u8 **cursor, size_t *max, |
| 14 | struct htlc_stub *htlc_stub) |
| 15 | { |
| 16 | htlc_stub->owner = fromwire_side(cursor, max); |
| 17 | htlc_stub->cltv_expiry = fromwire_u32(cursor, max); |
| 18 | htlc_stub->id = fromwire_u64(cursor, max); |
| 19 | fromwire_ripemd160(cursor, max, &htlc_stub->ripemd); |
| 20 | } |
nothing calls this directly
no test coverage detected