From efa239cc9ba4a776ae3f74529b2712c87771d8db Mon Sep 17 00:00:00 2001 From: ThomasV Date: Sat, 23 Nov 2024 11:24:43 +0100 Subject: [PATCH] follow-up ece1fb39d214e6772b86f1c1fa9aa152beaef386 --- electrum/lnpeer.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/electrum/lnpeer.py b/electrum/lnpeer.py index 9cb991a9b..73a1b9305 100644 --- a/electrum/lnpeer.py +++ b/electrum/lnpeer.py @@ -773,6 +773,8 @@ class Peer(Logger, EventListener): open_channel_tlvs = {} assert self.their_features.supports(LnFeatures.OPTION_STATIC_REMOTEKEY_OPT) our_channel_type = ChannelType(ChannelType.OPTION_STATIC_REMOTEKEY) + if self.use_anchors(): + our_channel_type |= ChannelType(ChannelType.OPTION_ANCHOR_OUTPUTS) if zeroconf: our_channel_type |= ChannelType(ChannelType.OPTION_ZEROCONF) # We do not set the option_scid_alias bit in channel_type because LND rejects it.