1
0

Merge pull request #9722 from f321x/enable_anchors_default

lightning: enable anchor channels by default
This commit is contained in:
ThomasV
2025-04-22 14:32:21 +02:00
committed by GitHub

View File

@@ -865,7 +865,7 @@ Warning: setting this to too low will result in lots of payment failures."""),
)
# anchor outputs channels
ENABLE_ANCHOR_CHANNELS = ConfigVar('enable_anchor_channels', default=False, type_=bool)
ENABLE_ANCHOR_CHANNELS = ConfigVar('enable_anchor_channels', default=True, type_=bool)
# zeroconf channels
ACCEPT_ZEROCONF_CHANNELS = ConfigVar('accept_zeroconf_channels', default=False, type_=bool)
ZEROCONF_TRUSTED_NODE = ConfigVar('zeroconf_trusted_node', default='', type_=str)