From 3e42d08c898bbcc85966e5c2d0dcc3e0f92d7865 Mon Sep 17 00:00:00 2001 From: Michael Schmoock Date: Wed, 11 Nov 2020 16:21:43 +0100 Subject: [PATCH] fix: hangup in plugin rescan This adds a missing plugins_send_getmanifest() call in the rescan function that lead to a RPC hangup. Not sure though if this is the proper fix. Changelog-None --- lightningd/plugin_control.c | 1 + 1 file changed, 1 insertion(+) diff --git a/lightningd/plugin_control.c b/lightningd/plugin_control.c index 523c14d8c..107be1339 100644 --- a/lightningd/plugin_control.c +++ b/lightningd/plugin_control.c @@ -141,6 +141,7 @@ plugin_dynamic_rescan_plugins(struct command *cmd) if (res) return res; + plugins_send_getmanifest(cmd->ld->plugins); return command_still_pending(cmd); }