| 58 | } |
| 59 | |
| 60 | static bool encoding_end(const u8 *encoded, size_t max_bytes) |
| 61 | { |
| 62 | #if DEVELOPER |
| 63 | if (tal_count(encoded) > dev_max_encoding_bytes) |
| 64 | return false; |
| 65 | #endif |
| 66 | return tal_count(encoded) <= max_bytes; |
| 67 | } |
| 68 | |
| 69 | /* Query this peer for these short-channel-ids. */ |
| 70 | bool query_short_channel_ids(struct daemon *daemon, |
no outgoing calls
no test coverage detected