From f3b4dcb1f64d1b9a9d7b2e81be04b258ee9f9ac6 Mon Sep 17 00:00:00 2001 From: Christian Decker Date: Tue, 9 Oct 2018 22:28:40 +0200 Subject: [PATCH] channel: Set the billboard to reconnecting when we restarted Some people were alarmed that the state was set to "Loaded from database" indefinitely. Saying that we are trying to reconnect may be more informative. --- lightningd/peer_control.c | 1 + 1 file changed, 1 insertion(+) diff --git a/lightningd/peer_control.c b/lightningd/peer_control.c index b0a8caca5..2b7923b76 100644 --- a/lightningd/peer_control.c +++ b/lightningd/peer_control.c @@ -995,6 +995,7 @@ static void activate_peer(struct peer *peer) msg = towire_connectctl_connect_to_peer(NULL, &peer->id, 0, &peer->addr); subd_send_msg(ld->connectd, take(msg)); + channel_set_billboard(channel, false, "Attempting to reconnect"); } list_for_each(&peer->channels, channel, list) {