@@ -1748,7 +1748,7 @@ mod fuzzy_internal_msgs {
1748
1748
BlindedReceive {
1749
1749
amt_msat : u64 ,
1750
1750
total_msat : u64 ,
1751
- outgoing_cltv_value : u32 ,
1751
+ cltv_expiry_height : u32 ,
1752
1752
encrypted_tlvs : Vec < u8 > ,
1753
1753
intro_node_blinding_point : Option < PublicKey > , // Set if the introduction node of the blinded path is the final node
1754
1754
}
@@ -2312,12 +2312,11 @@ impl Writeable for OutboundOnionPayload {
2312
2312
} ) ;
2313
2313
} ,
2314
2314
Self :: BlindedReceive {
2315
- amt_msat, total_msat, outgoing_cltv_value, encrypted_tlvs,
2316
- intro_node_blinding_point,
2315
+ amt_msat, total_msat, cltv_expiry_height, encrypted_tlvs, intro_node_blinding_point,
2317
2316
} => {
2318
2317
_encode_varint_length_prefixed_tlv ! ( w, {
2319
2318
( 2 , HighZeroBytesDroppedBigSize ( * amt_msat) , required) ,
2320
- ( 4 , HighZeroBytesDroppedBigSize ( * outgoing_cltv_value ) , required) ,
2319
+ ( 4 , HighZeroBytesDroppedBigSize ( * cltv_expiry_height ) , required) ,
2321
2320
( 10 , * encrypted_tlvs, required_vec) ,
2322
2321
( 12 , intro_node_blinding_point, option) ,
2323
2322
( 18 , HighZeroBytesDroppedBigSize ( * total_msat) , required)
0 commit comments