diff --git a/Makefile b/Makefile index 5fa138c9e..8a2a5a882 100644 --- a/Makefile +++ b/Makefile @@ -23,7 +23,7 @@ CCANDIR := ccan # Where we keep the BOLT RFCs BOLTDIR := ../bolts/ -DEFAULT_BOLTVERSION := 7dda8f84edb8655766d83619cb41110c1bf43f85 +DEFAULT_BOLTVERSION := 6e85df448bfee7d10f26aabb06b8eba3d7505888 # Can be overridden on cmdline. BOLTVERSION := $(DEFAULT_BOLTVERSION) diff --git a/openingd/dualopend.c b/openingd/dualopend.c index d3ca9aeac..bc99c21b1 100644 --- a/openingd/dualopend.c +++ b/openingd/dualopend.c @@ -3084,7 +3084,7 @@ static void opener_start(struct state *state, u8 *msg) /* BOLT #2: * - if `channel_type` is set, and `channel_type` was set in * `open_channel`, and they are not equal types: - * - MUST reject the channel. + * - MUST fail the channel. */ if (a_tlv->channel_type && !featurebits_eq(a_tlv->channel_type, diff --git a/openingd/openingd.c b/openingd/openingd.c index 82af17d35..f088a6a78 100644 --- a/openingd/openingd.c +++ b/openingd/openingd.c @@ -445,7 +445,7 @@ static u8 *funder_channel_start(struct state *state, u8 channel_flags, /* BOLT #2: * - if `channel_type` is set, and `channel_type` was set in * `open_channel`, and they are not equal types: - * - MUST reject the channel. + * - MUST fail the channel. */ if (accept_tlvs->channel_type) { /* Except that v23.05 could set OPT_SCID_ALIAS in reply! */