-
Notifications
You must be signed in to change notification settings - Fork 492
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
BOLT 1: make remote_addr definition machine readable. #990
Conversation
It will name the structure just
If thats okay, I can ack |
Seems like I still can't push into Rusty's branch. We need to wait for him... |
It had a blank line and invalid format for tools/extract-formats.py. And move the format information into the requirements section (and fix spelling: `node_announement` -> `node_announcement` Diff for extract-formats.py before and after: ```diff --- /tmp/before 2022-05-17 10:47:01.583086352 +0930 +++ /tmp/after 2022-05-17 10:51:59.166850111 +0930 @@ -6,6 +6,8 @@ msgdata,init,tlvs,init_tlvs, tlvtype,init_tlvs,networks,1 tlvdata,init_tlvs,networks,chains,chain_hash,... +tlvtype,init_tlvs,remote_addr,3 +tlvdata,init_tlvs,remote_addr,data,byte,... msgtype,error,17 msgdata,error,channel_id,channel_id, msgdata,error,len,u16, ``` Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
248ab54
to
f1c797d
Compare
Fixed, description, thanks! (I changed it at the last moment, after I generated that diff!) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ACK f1c797d
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ACK f1c797d
OK, applying under the "spelling and typos" rule. |
It had a blank line and invalid format for tools/extract-formats.py. This meant that the python package omitted it!
And move the format information into the requirements section
(and fix spelling:
node_announement
->node_announcement
Diff for extract-formats.py before and after:
Signed-off-by: Rusty Russell rusty@rustcorp.com.au