@@ -41,31 +41,25 @@ def hex_bits(features):
4141
4242def expected_peer_features (extra = []):
4343 """Return the expected peer features hexstring for this configuration"""
44- features = [0 , 5 , 7 , 8 , 11 , 12 , 14 , 17 , 19 , 25 , 27 , 35 , 39 , 45 , 47 , 51 ]
44+ features = [0 , 5 , 7 , 8 , 11 , 12 , 14 , 17 , 19 , 23 , 25 , 27 , 35 , 39 , 45 , 47 , 51 ]
4545 if EXPERIMENTAL_DUAL_FUND :
4646 # option_dual_fund
4747 features += [29 ]
4848 if EXPERIMENTAL_SPLICING :
4949 features += [63 ] # option_splice
50- if TEST_NETWORK != 'liquid-regtest' :
51- # Anchors, except for elements
52- features += [23 ]
5350 return hex_bits (features + extra )
5451
5552
5653# With the addition of the keysend plugin, we now send a different set of
5754# features for the 'node' and the 'peer' feature sets
5855def expected_node_features (extra = []):
5956 """Return the expected node features hexstring for this configuration"""
60- features = [0 , 5 , 7 , 8 , 11 , 12 , 14 , 17 , 19 , 25 , 27 , 35 , 39 , 45 , 47 , 51 , 55 ]
57+ features = [0 , 5 , 7 , 8 , 11 , 12 , 14 , 17 , 19 , 23 , 25 , 27 , 35 , 39 , 45 , 47 , 51 , 55 ]
6158 if EXPERIMENTAL_DUAL_FUND :
6259 # option_dual_fund
6360 features += [29 ]
6461 if EXPERIMENTAL_SPLICING :
6562 features += [63 ] # option_splice
66- if TEST_NETWORK != 'liquid-regtest' :
67- # Anchors, except for elements
68- features += [23 ]
6963 return hex_bits (features + extra )
7064
7165
0 commit comments