-
Notifications
You must be signed in to change notification settings - Fork 901
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
wire: Add funding_locked tlv patch from PR lightning/bolts#910
Minimal set of changes to update the peer_wire.csv to include the TLV field in the `funding_locked` message, and add type 1=alias from that PR too.
- Loading branch information
Showing
5 changed files
with
55 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
diff --git a/wire/peer_wire.csv b/wire/peer_wire.csv | ||
index a028ddc66..fc24b61ef 100644 | ||
--- a/wire/peer_wire.csv | ||
+++ b/wire/peer_wire.csv | ||
@@ -126,6 +126,9 @@ msgdata,funding_signed,signature,signature, | ||
msgtype,funding_locked,36 | ||
msgdata,funding_locked,channel_id,channel_id, | ||
msgdata,funding_locked,next_per_commitment_point,point, | ||
+msgdata,funding_locked,tlvs,funding_locked_tlvs, | ||
+tlvtype,funding_locked_tlvs,alias,1 | ||
+tlvdata,funding_locked_tlvs,alias,scid,short_channel_id, | ||
msgtype,open_channel2,64 | ||
msgdata,open_channel2,chain_hash,chain_hash, | ||
msgdata,open_channel2,channel_id,channel_id, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters