From e2a3fa1851f6d9fc4cf45327365582e512fa398e Mon Sep 17 00:00:00 2001 From: f321x Date: Thu, 10 Apr 2025 12:11:13 +0200 Subject: [PATCH] enable anchor channels by default --- electrum/simple_config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/electrum/simple_config.py b/electrum/simple_config.py index a93b8764f..a10b1bae1 100644 --- a/electrum/simple_config.py +++ b/electrum/simple_config.py @@ -842,7 +842,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)