| 66 | } |
| 67 | |
| 68 | void tlvstream_set_short_channel_id(struct tlv_field **stream, u64 type, |
| 69 | struct short_channel_id *value) |
| 70 | { |
| 71 | u8 *ser = tal_arr(NULL, u8, 0); |
| 72 | towire_short_channel_id(&ser, value); |
| 73 | tlvstream_set_raw(stream, type, take(ser), tal_bytelen(ser)); |
| 74 | } |
| 75 | |
| 76 | void tlvstream_set_tu64(struct tlv_field **stream, u64 type, u64 value) |
| 77 | { |
no test coverage detected