From 6e5928aa1e4eda29a32d1beffddbd0283ee61977 Mon Sep 17 00:00:00 2001 From: lisa neigut Date: Thu, 23 May 2019 16:42:57 -0700 Subject: [PATCH] openingd: update billboard with funding info Make it easier for a user to know what's going on with a channel in `listpeers`. --- openingd/openingd.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/openingd/openingd.c b/openingd/openingd.c index 7ad624131..8346d0f75 100644 --- a/openingd/openingd.c +++ b/openingd/openingd.c @@ -610,6 +610,10 @@ static u8 *funder_channel_start(struct state *state, &state->our_funding_pubkey, &their_funding_pubkey)); + /* Update the billboard with our infos */ + peer_billboard(false, + "Funding channel start: awaiting funding_txid with output to %s", + tal_hex(tmpctx, funding_output_script)); return towire_opening_funder_start_reply(state, funding_output_script); }