From e97ee3d14e329ce5b79533a2c0e81f5d6219e244 Mon Sep 17 00:00:00 2001 From: practicalswift Date: Tue, 13 Feb 2018 19:54:03 +0100 Subject: [PATCH] Fix typo in error message (funding_signed ids don't match) --- openingd/opening.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/openingd/opening.c b/openingd/opening.c index 8b7c6f8a0..fe801020c 100644 --- a/openingd/opening.c +++ b/openingd/opening.c @@ -430,7 +430,7 @@ static u8 *funder_channel(struct state *state, if (!structeq(&id_in, &state->channel_id)) peer_failed(PEER_FD, &state->cs, &id_in, - "funding_signed ids don't match: expceted %s got %s", + "funding_signed ids don't match: expected %s got %s", type_to_string(msg, struct channel_id, &state->channel_id), type_to_string(msg, struct channel_id, &id_in));