| 245 | } |
| 246 | |
| 247 | static void print_features(const u8 *features) |
| 248 | { |
| 249 | printf("features:"); |
| 250 | for (size_t i = 0; i < tal_bytelen(features) * CHAR_BIT; i++) { |
| 251 | if (feature_is_set(features, i)) |
| 252 | printf(" %zu", i); |
| 253 | } |
| 254 | printf("\n"); |
| 255 | } |
| 256 | |
| 257 | static bool print_blindedpaths(struct blinded_path **paths, |
| 258 | struct blinded_payinfo **blindedpay) |
no test coverage detected