mirror of
https://github.com/ElementsProject/lightning.git
synced 2025-02-23 06:55:13 +01:00
No code changes, just catching up with the BOLT changes which rework our blinded path terminology (for the better!). Another patch will sweep the rest of our internal names, this tries only to make things compile and fix up the BOLT quotes. 1. Inside payload: current_blinding_point -> current_path_key 2. Inside update_add_htlc TLV: blinding_point -> blinded_path 3. Inside blinded_path: blinding -> first_path_key 4. Inside onion_message: blinding -> path_key. 5. Inside encrypted_data_tlv: next_blinding_override -> next_path_key_override Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
18 lines
864 B
Diff
18 lines
864 B
Diff
We can't handle nested tlvs yet, so make these byte arrays.
|
|
|
|
diff --git b/wire/onion_wire.csv a/wire/onion_wire.csv
|
|
index 5c52fe9a1..2ac0c4cff 100644
|
|
--- b/wire/onion_wire.csv
|
|
+++ a/wire/onion_wire.csv
|
|
@@ -51,8 +29,8 @@ tlvdata,onionmsg_tlv,reply_path,path,onionmsg_path,...
|
|
tlvtype,onionmsg_tlv,encrypted_data_tlv,4
|
|
tlvdata,onionmsg_tlv,encrypted_data_tlv,encrypted_data_tlv,byte,...
|
|
tlvtype,onionmsg_tlv,invoice_request,64
|
|
-tlvdata,onionmsg_tlv,invoice_request,invoice_request,tlv_invoice_request,
|
|
+tlvdata,onionmsg_tlv,invoice_request,invoice_request,byte,...
|
|
tlvtype,onionmsg_tlv,invoice,66
|
|
-tlvdata,onionmsg_tlv,invoice,invoice,tlv_invoice,
|
|
+tlvdata,onionmsg_tlv,invoice,invoice,byte,...
|
|
tlvtype,onionmsg_tlv,invoice_error,68
|
|
-tlvdata,onionmsg_tlv,invoice_error,invoice_error,tlv_invoice_error,
|
|
+tlvdata,onionmsg_tlv,invoice_error,invoice_error,byte,...
|