| 195 | } |
| 196 | |
| 197 | bool anchors_negotiated(struct feature_set *our_features, |
| 198 | const u8 *their_features) |
| 199 | { |
| 200 | return feature_negotiated(our_features, their_features, |
| 201 | OPT_ANCHOR_OUTPUTS_DEPRECATED) |
| 202 | || feature_negotiated(our_features, |
| 203 | their_features, |
| 204 | OPT_ANCHORS_ZERO_FEE_HTLC_TX); |
| 205 | } |
| 206 | |
| 207 | char *validate_remote_upfront_shutdown(const tal_t *ctx, |
| 208 | struct feature_set *our_features, |
no test coverage detected