diff --git a/openingd/dualopend.c b/openingd/dualopend.c index 5a01a43c7cd3..1638c3539c82 100644 --- a/openingd/dualopend.c +++ b/openingd/dualopend.c @@ -2433,7 +2433,7 @@ static void accepter_start(struct state *state, const u8 *oc2_msg) state->channel_type = channel_type_from(state, open_tlv->channel_type); } else { negotiation_failed(state, - "Did not support channel_type %s", + "Did not support channel_type [%s]", fmt_featurebits(tmpctx, open_tlv->channel_type)); return; diff --git a/openingd/openingd.c b/openingd/openingd.c index 3fd6a91d571a..8ebdeea38cc8 100644 --- a/openingd/openingd.c +++ b/openingd/openingd.c @@ -974,7 +974,7 @@ static u8 *fundee_channel(struct state *state, const u8 *open_channel_msg) state->channel_type = channel_type_from(state, open_tlvs->channel_type); } else { negotiation_failed(state, - "Did not support channel_type %s", + "Did not support channel_type [%s]", fmt_featurebits(tmpctx, open_tlvs->channel_type)); return NULL;