diff --git a/common/initial_channel.c b/common/initial_channel.c index 8270f4a1b..fb01cd175 100644 --- a/common/initial_channel.c +++ b/common/initial_channel.c @@ -201,6 +201,10 @@ struct channel_type **channel_upgradable_types(const tal_t *ctx, struct channel_type *channel_desired_type(const tal_t *ctx, const struct channel *channel) { + /* We don't actually want to downgrade anchors! */ + if (channel->option_anchor_outputs) + return type_anchor_outputs(ctx); + /* For now, we just want option_static_remotekey */ return type_static_remotekey(ctx); }