Skip to content

Commit

Permalink
channeld: rephrase depth_togo line in billboard_update
Browse files Browse the repository at this point in the history
  • Loading branch information
SimonVrouwe authored and cdecker committed May 27, 2019
1 parent 8c1bbf3 commit 54a67c2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion channeld/channeld.c
Original file line number Diff line number Diff line change
Expand Up @@ -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.";
Expand Down

0 comments on commit 54a67c2

Please sign in to comment.