From b3565fe2ed39e3b460061624439f8c5313cd1c9b Mon Sep 17 00:00:00 2001 From: niftynei Date: Thu, 20 May 2021 16:54:34 -0500 Subject: [PATCH] nit: add another debug log log when we're telling the peer our depth's been reached --- lightningd/channel_control.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lightningd/channel_control.c b/lightningd/channel_control.c index 53aa43773..3958e9dfa 100644 --- a/lightningd/channel_control.c +++ b/lightningd/channel_control.c @@ -645,6 +645,8 @@ bool channel_tell_depth(struct lightningd *ld, return true; } + log_debug(channel->log, + "Funding tx %s confirmed, telling peer", txidstr); dualopen_tell_depth(channel->owner, channel, txid, depth); return true;