splicing: Remove dependency on experimental_dual_fund

Splicing should work automatically on v1 or v2 channels so this requirement isn’t needed.

Changelog-None
[ Squashed fixup into a single commit --RR ]
This commit is contained in:
Dusty Daemon
2023-08-05 22:49:42 -04:00
committed by GitHub
parent 620a61ee09
commit fb179f2d5e
3 changed files with 0 additions and 5 deletions

View File

@@ -43,7 +43,6 @@ def expected_peer_features(wumbo_channels=False, extra=[]):
# option_dual_fund
features += [29]
if EXPERIMENTAL_SPLICING:
features += [29] # option_dual_fund
features += [35] # option_quiesce
features += [63] # option_splice
return hex_bits(features + extra)
@@ -60,7 +59,6 @@ def expected_node_features(wumbo_channels=False, extra=[]):
# option_dual_fund
features += [29]
if EXPERIMENTAL_SPLICING:
features += [29] # option_dual_fund
features += [35] # option_quiesce
features += [63] # option_splice
return hex_bits(features + extra)