Skip to content

Commit 400964a

Browse files
committed
f rename variant
1 parent 08eab05 commit 400964a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lightning/src/ln/msgs.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1842,7 +1842,7 @@ mod fuzzy_internal_msgs {
18421842
#[allow(unused)]
18431843
/// This is the last Trampoline hop, whereupon the Trampoline forward mechanism is exited,
18441844
/// and payment data is relayed using non-Trampoline blinded hops
1845-
BlindedForward {
1845+
LegacyBlindedPathEntry {
18461846
/// The value, in msat, of the payment after this hop's fee is deducted.
18471847
amt_to_forward: u64,
18481848
outgoing_cltv_value: u32,
@@ -2776,7 +2776,7 @@ impl Writeable for OutboundTrampolinePayload {
27762776
(14, outgoing_node_id, required)
27772777
});
27782778
},
2779-
Self::BlindedForward { amt_to_forward, outgoing_cltv_value, payment_paths, invoice_features } => {
2779+
Self::LegacyBlindedPathEntry { amt_to_forward, outgoing_cltv_value, payment_paths, invoice_features } => {
27802780
let blinded_path_value: Vec<u8> = payment_paths.iter().flat_map(|p| {
27812781
p.inner_blinded_path().encode().into_iter().chain(p.payinfo.encode())
27822782
}).collect();

0 commit comments

Comments
 (0)