From 9f893e3f6d3ef020882d942d0772fd6bc1af7bbd Mon Sep 17 00:00:00 2001 From: YOSHIDA Masanori Date: Fri, 30 Oct 2020 13:27:06 +0900 Subject: [PATCH] wire: remove declaration of towire_tlvs since its implementation is already removed Signed-off-by: YOSHIDA Masanori Changelog-None --- wire/tlvstream.h | 6 ------ 1 file changed, 6 deletions(-) diff --git a/wire/tlvstream.h b/wire/tlvstream.h index 4370a8b44..d36ac6593 100644 --- a/wire/tlvstream.h +++ b/wire/tlvstream.h @@ -27,12 +27,6 @@ struct tlv_field { u8 *value; }; -/* Append a stream of tlvs: types[] must be in increasing type order! */ -void towire_tlvs(u8 **pptr, - const struct tlv_record_type types[], - size_t num_types, - const void *record); - /* Given any tlvstream serialize the raw fields (untyped ones). */ void towire_tlvstream_raw(u8 **pptr, const struct tlv_field *fields);