| 302 | } |
| 303 | |
| 304 | static bool test_bit(const u8 *features, size_t byte, unsigned int bit) |
| 305 | { |
| 306 | assert(byte < tal_count(features)); |
| 307 | return features[tal_count(features) - 1 - byte] & (1 << (bit % 8)); |
| 308 | } |
| 309 | |
| 310 | /* BOLT #7: |
| 311 | * |
no outgoing calls
no test coverage detected