Helper to append bool to data, and return value */
| 6 | |
| 7 | /* Helper to append bool to data, and return value */ |
| 8 | static bool towire_bool_val(u8 **pptr, bool v) |
| 9 | { |
| 10 | towire_bool(pptr, v); |
| 11 | return v; |
| 12 | } |
| 13 | |
| 14 | static void towire_short_channel_id_dir(u8 **pptr, const struct short_channel_id_dir *scidd) |
| 15 | { |
no test coverage detected