| 1247 | } |
| 1248 | |
| 1249 | static char *opt_set_splicing(struct lightningd *ld) |
| 1250 | { |
| 1251 | /* Show deprecation warning */ |
| 1252 | if (!opt_deprecated_ok(ld, "experimental_splicing", NULL, |
| 1253 | "v26.04", "v27.04")) |
| 1254 | return "--experimental-splicing is now enabled by default" |
| 1255 | " enabled by default"; |
| 1256 | |
| 1257 | feature_set_or(ld->our_features, |
| 1258 | take(feature_set_for_feature(NULL, |
| 1259 | OPTIONAL_FEATURE(OPT_SPLICE)))); |
| 1260 | return NULL; |
| 1261 | } |
| 1262 | |
| 1263 | static char *opt_set_shutdown_wrong_funding(struct lightningd *ld) |
| 1264 | { |
nothing calls this directly
no test coverage detected