| 1235 | } |
| 1236 | |
| 1237 | static char *opt_set_dual_fund(struct lightningd *ld) |
| 1238 | { |
| 1239 | /* Dual funding implies static remotkey */ |
| 1240 | feature_set_or(ld->our_features, |
| 1241 | take(feature_set_for_feature(NULL, |
| 1242 | OPTIONAL_FEATURE(OPT_STATIC_REMOTEKEY)))); |
| 1243 | feature_set_or(ld->our_features, |
| 1244 | take(feature_set_for_feature(NULL, |
| 1245 | OPTIONAL_FEATURE(OPT_DUAL_FUND)))); |
| 1246 | return NULL; |
| 1247 | } |
| 1248 | |
| 1249 | static char *opt_set_splicing(struct lightningd *ld) |
| 1250 | { |
nothing calls this directly
no test coverage detected