Add blinded path {metadata} fields to Path, but disallow paying blinded paths for now
[rust-lightning] / lightning / src / util / macro_logger.rs
index b7224be3ecea8cff537f3ea6373d71fd96716247..a9018f3da90c89f412a4bb55ca438c55f8abec77 100644 (file)
@@ -68,6 +68,7 @@ impl<'a> core::fmt::Display for DebugRoute<'a> {
                        for h in p.hops.iter() {
                                writeln!(f, " node_id: {}, short_channel_id: {}, fee_msat: {}, cltv_expiry_delta: {}", log_pubkey!(h.pubkey), h.short_channel_id, h.fee_msat, h.cltv_expiry_delta)?;
                        }
+                       writeln!(f, " blinded_tail: {:?}", p.blinded_tail)?;
                }
                Ok(())
        }