We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dcdf7db commit 6d63e68Copy full SHA for 6d63e68
channeld/channeld.c
@@ -1160,7 +1160,7 @@ static u8 *send_commit_part(const tal_t *ctx,
1160
* send unless negotiated */
1161
if (feature_negotiated(peer->our_features,
1162
peer->their_features,
1163
- OPT_EXPERIMENTAL_SPLICE)) {
+ OPT_SPLICE)) {
1164
status_debug("send_commit_part(splice: %d, remote_splice: %d,"
1165
" index: %"PRIu64")",
1166
(int)splice_amnt, (int)remote_splice_amnt,
lightningd/hsm_control.c
@@ -177,7 +177,7 @@ struct ext_key *hsm_init(struct lightningd *ld)
177
}
178
179
if (feature_offered(ld->our_features->bits[INIT_FEATURE],
180
- OPT_EXPERIMENTAL_SPLICE)
+ OPT_SPLICE)
181
&& !hsm_capable(ld, WIRE_HSMD_SIGN_SPLICE_TX)) {
182
fatal("--experimental-splicing needs HSM capable of signing splices!");
183
lightningd/options.c
@@ -1263,7 +1263,7 @@ static char *opt_set_splicing(struct lightningd *ld)
1263
{
1264
feature_set_or(ld->our_features,
1265
take(feature_set_for_feature(NULL,
1266
- OPTIONAL_FEATURE(OPT_EXPERIMENTAL_SPLICE))));
+ OPTIONAL_FEATURE(OPT_SPLICE))));
1267
return NULL;
1268
1269
@@ -2058,7 +2058,7 @@ void add_config_deprecated(struct lightningd *ld,
2058
json_add_bool(response, name0,
2059
feature_offered(ld->our_features
2060
->bits[INIT_FEATURE],
2061
- OPT_EXPERIMENTAL_SPLICE));
+ OPT_SPLICE));
2062
} else if (opt->cb == (void *)opt_set_onion_messages) {
2063
2064
tests/utils.py
@@ -45,7 +45,7 @@ def expected_peer_features(extra=[]):
45
# option_dual_fund
46
features += [29]
47
if EXPERIMENTAL_SPLICING:
48
- features += [163] # option_experimental_splice
+ features += [63] # option_splice
49
if TEST_NETWORK != 'liquid-regtest':
50
# Anchors, except for elements
51
features += [23]
@@ -61,7 +61,7 @@ def expected_node_features(extra=[]):
61
62
63
64
65
66
67
wire/peer_wire.csv
@@ -211,13 +211,13 @@ subtypedata,lease_rates,channel_fee_max_base_msat,tu32,
211
msgtype,stfu,2
212
msgdata,stfu,channel_id,channel_id,
213
msgdata,stfu,initiator,u8,
214
-msgtype,splice,75
+msgtype,splice,80
215
msgdata,splice,channel_id,channel_id,
216
msgdata,splice,relative_satoshis,s64,
217
msgdata,splice,funding_feerate_perkw,u32,
218
msgdata,splice,locktime,u32,
219
msgdata,splice,funding_pubkey,point,
220
-msgtype,splice_ack,76
+msgtype,splice_ack,81
221
msgdata,splice_ack,channel_id,channel_id,
222
msgdata,splice_ack,relative_satoshis,s64,
223
msgdata,splice_ack,funding_pubkey,point,
0 commit comments