Expose the historical success probability calculation itself
[rust-lightning] / lightning / src / util / macro_logger.rs
index b7224be3ecea8cff537f3ea6373d71fd96716247..8742e8e84d0bf27670fb0cb71af3c372e089b9e3 100644 (file)
@@ -8,7 +8,7 @@
 // licenses.
 
 use crate::chain::transaction::OutPoint;
-use crate::chain::keysinterface::SpendableOutputDescriptor;
+use crate::sign::SpendableOutputDescriptor;
 
 use bitcoin::hash_types::Txid;
 use bitcoin::blockdata::transaction::Transaction;
@@ -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(())
        }