1
0
Fork 0
mirror of https://github.com/lightning/bolts.git synced 2025-03-09 05:14:47 +01:00

tlvs -> tlv_stream in extract-formats.py

This commit is contained in:
Corné Plooy 2020-11-06 13:07:59 +01:00 committed by neil saitug
parent 13520a0e36
commit 5a86adaa77

View file

@ -26,7 +26,7 @@ import fileinput
typeline = re.compile(
'(1\.|\*) type: (?P<value>[-0-9A-Za-z_|]+) \(`(?P<name>[A-Za-z0-9_]+)`\)( \(`?(?P<option>[^)`]*)`\))?')
tlvline = re.compile(
'(1\.|\*) tlvs: `(?P<name>[A-Za-z0-9_]+)`( \(`?(?P<option>[^)`]*)`\))?')
'(1\.|\*) `tlv_stream`: `(?P<name>[A-Za-z0-9_]+)`( \(`?(?P<option>[^)`]*)`\))?')
subtypeline = re.compile(
'(1\.|\*) subtype: `(?P<name>[A-Za-z0-9_]+)`( \(`?(?P<option>[^)`]*)`\))?')
dataline = re.compile(