X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=blobdiff_plain;f=lightning%2Fsrc%2Fln%2Fmod.rs;h=bacb9e86c791bf61dee44246751c4f85c0e0f366;hb=448b191fec4c6d1e9638c82aade7385b1516aa5d;hp=2c9fe710a26315103f0830d811d410141e85d5fb;hpb=a545683a63e8d9dcc4757d1989eafda81c16bc6c;p=rust-lightning diff --git a/lightning/src/ln/mod.rs b/lightning/src/ln/mod.rs index 2c9fe710..bacb9e86 100644 --- a/lightning/src/ln/mod.rs +++ b/lightning/src/ln/mod.rs @@ -13,6 +13,7 @@ #[macro_use] pub mod functional_test_utils; +pub mod channel_id; pub mod channelmanager; pub mod inbound_payment; pub mod msgs; @@ -31,6 +32,9 @@ pub mod channel; #[cfg(not(fuzzing))] pub(crate) mod channel; +// Re-export ChannelId +pub use self::channel_id::ChannelId; + pub(crate) mod onion_utils; mod outbound_payment; pub mod wire; @@ -86,6 +90,13 @@ impl core::fmt::Display for PaymentHash { /// This is not exported to bindings users as we just use [u8; 32] directly #[derive(Hash, Copy, Clone, PartialEq, Eq, Debug, Ord, PartialOrd)] pub struct PaymentPreimage(pub [u8; 32]); + +impl core::fmt::Display for PaymentPreimage { + fn fmt(&self, f: &mut core::fmt::Formatter) -> core::fmt::Result { + crate::util::logger::DebugBytes(&self.0).fmt(f) + } +} + /// payment_secret type, use to authenticate sender to the receiver and tie MPP HTLCs together /// /// This is not exported to bindings users as we just use [u8; 32] directly