From 54a67c24448e47e7053b3310e0edd8b9579c8b69 Mon Sep 17 00:00:00 2001 From: Simon Vrouwe Date: Fri, 3 May 2019 09:40:34 +0300 Subject: [PATCH] channeld: rephrase depth_togo line in billboard_update --- channeld/channeld.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/channeld/channeld.c b/channeld/channeld.c index 96e8b837b..e3639947a 100644 --- a/channeld/channeld.c +++ b/channeld/channeld.c @@ -177,7 +177,7 @@ static void billboard_update(const struct peer *peer) funding_status = "Funding transaction locked."; else if (!peer->funding_locked[LOCAL] && !peer->funding_locked[REMOTE]) funding_status = tal_fmt(tmpctx, - "Funding needs %d confirmations to reach lockin.", + "Funding needs %d more confirmations for lockin.", peer->depth_togo); else if (peer->funding_locked[LOCAL] && !peer->funding_locked[REMOTE]) funding_status = "We've confirmed funding, they haven't yet.";