| 52 | } |
| 53 | |
| 54 | static void notify_send(struct lightningd *ld, |
| 55 | struct jsonrpc_notification *n STEALS) |
| 56 | { |
| 57 | json_object_end(n->stream); |
| 58 | jsonrpc_notification_end(n); |
| 59 | plugins_notify(ld->plugins, take(n)); |
| 60 | } |
| 61 | |
| 62 | static void connect_notification_serialize(struct json_stream *stream, |
| 63 | const struct node_id *nodeid, |
no test coverage detected