Add Display to PaymentId & PaymentPreimage
authoroptout <13562139+optout21@users.noreply.github.com>
Tue, 22 Aug 2023 16:05:27 +0000 (18:05 +0200)
committeroptout <13562139+optout21@users.noreply.github.com>
Tue, 22 Aug 2023 16:16:55 +0000 (18:16 +0200)
lightning/src/ln/channelmanager.rs
lightning/src/ln/mod.rs

index 2177c1d7e18c8ca48a21ea3b51c8f454728726dd..7b752f176a46e0efbae38965208120ba358d63c7 100644 (file)
@@ -252,6 +252,12 @@ impl Readable for PaymentId {
        }
 }
 
+impl core::fmt::Display for PaymentId {
+       fn fmt(&self, f: &mut core::fmt::Formatter) -> core::fmt::Result {
+               crate::util::logger::DebugBytes(&self.0).fmt(f)
+       }
+}
+
 /// An identifier used to uniquely identify an intercepted HTLC to LDK.
 ///
 /// This is not exported to bindings users as we just use [u8; 32] directly
index 2c9fe710a26315103f0830d811d410141e85d5fb..a5de0d4c2f5d77a70d254cca647808c77563ac50 100644 (file)
@@ -86,6 +86,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