mirror of
https://github.com/aljazceru/lightning.git
synced 2025-12-19 07:04:22 +01:00
Makefile: update to BOLTs without zlib.
This contains a typo fix and a clarification on channel_type, but also removes ZLIB. Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
This commit is contained in:
@@ -11,11 +11,11 @@ struct tlv_reply_channel_range_tlvs_timestamps_tlv;
|
||||
*
|
||||
* Encoding types:
|
||||
* * `0`: uncompressed array of `short_channel_id` types, in ascending order.
|
||||
* * `1`: array of `short_channel_id` types, in ascending order, compressed with zlib deflate<sup>[1](#reference-1)</sup>
|
||||
* * `1`: Previously used for zlib compression, this encoding MUST NOT be used.
|
||||
*/
|
||||
enum arr_encode_types {
|
||||
ARR_UNCOMPRESSED = 0,
|
||||
ARR_ZLIB = 1
|
||||
ARR_ZLIB_DEPRECATED = 1
|
||||
};
|
||||
|
||||
struct short_channel_id *decode_short_ids(const tal_t *ctx, const u8 *encoded);
|
||||
|
||||
Reference in New Issue
Block a user