From abccb7dc49e390e4ae28f022a125a8a1d120db5f Mon Sep 17 00:00:00 2001 From: Simon Vrouwe Date: Thu, 9 Sep 2021 11:02:19 +0300 Subject: [PATCH] plugin: register `shutdown` instead of `plugin_shutdown` in notifications list --- lightningd/notification.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lightningd/notification.c b/lightningd/notification.c index 7f3ea216f2ce..79701a74a62d 100644 --- a/lightningd/notification.c +++ b/lightningd/notification.c @@ -555,7 +555,7 @@ void notify_channel_open_failed(struct lightningd *ld, plugins_notify(ld->plugins, take(n)); } -REGISTER_NOTIFICATION(plugin_shutdown, NULL); +REGISTER_NOTIFICATION(shutdown, NULL); bool notify_plugin_shutdown(struct lightningd *ld, struct plugin *p) {