mirror of
https://github.com/aljazceru/lightning.git
synced 2026-01-06 07:34:21 +01:00
features: renumber from 102/103 to 38/39.
100+ is for experimentation, modern spec practice is to assign feature bits sequentially as PRs get added, to avoid later renumbering. Still respect the old bit for now. Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
This commit is contained in:
@@ -4168,7 +4168,7 @@ def test_fetchinvoice_autoconnect(node_factory, bitcoind):
|
||||
|
||||
if EXPERIMENTAL_FEATURES:
|
||||
# We have to force option_onion_messages off!
|
||||
opts1 = {'dev-force-features': '-103'}
|
||||
opts1 = {'dev-force-features': '-39'}
|
||||
else:
|
||||
opts1 = {}
|
||||
l1, l2 = node_factory.line_graph(2, wait_for_announce=True,
|
||||
|
||||
@@ -23,7 +23,7 @@ def expected_peer_features(wumbo_channels=False, extra=[]):
|
||||
features = [1, 5, 7, 9, 11, 13, 15, 17, 27]
|
||||
if EXPERIMENTAL_FEATURES:
|
||||
# OPT_ONION_MESSAGES
|
||||
features += [103]
|
||||
features += [39]
|
||||
# option_anchor_outputs
|
||||
features += [21]
|
||||
if wumbo_channels:
|
||||
@@ -43,7 +43,7 @@ def expected_node_features(wumbo_channels=False, extra=[]):
|
||||
features = [1, 5, 7, 9, 11, 13, 15, 17, 27, 55]
|
||||
if EXPERIMENTAL_FEATURES:
|
||||
# OPT_ONION_MESSAGES
|
||||
features += [103]
|
||||
features += [39]
|
||||
# option_anchor_outputs
|
||||
features += [21]
|
||||
if wumbo_channels:
|
||||
|
||||
Reference in New Issue
Block a user