| 696 | REGISTER_NOTIFICATION(plugin_stopped); |
| 697 | |
| 698 | void notify_plugin_stopped(struct lightningd *ld, struct plugin *plugin) |
| 699 | { |
| 700 | struct jsonrpc_notification *n = notify_start(ld, "plugin_stopped"); |
| 701 | if (!n) |
| 702 | return; |
| 703 | plugin_notification_serialize(n->stream, plugin); |
| 704 | notify_send(ld, n); |
| 705 | } |
no test coverage detected