| 639 | } |
| 640 | |
| 641 | static void channel_open_failed_serialize(struct json_stream *stream, |
| 642 | const struct channel_id *cid) |
| 643 | { |
| 644 | json_object_start(stream, "channel_open_failed"); |
| 645 | json_add_channel_id(stream, "channel_id", cid); |
| 646 | json_object_end(stream); |
| 647 | } |
| 648 | |
| 649 | REGISTER_NOTIFICATION(channel_open_failed, |
| 650 | channel_open_failed_serialize); |
nothing calls this directly
no test coverage detected