Add Display to PaymentHash
authoroptout <13562139+optout21@users.noreply.github.com>
Tue, 22 Aug 2023 15:58:39 +0000 (17:58 +0200)
committeroptout <13562139+optout21@users.noreply.github.com>
Tue, 22 Aug 2023 16:13:26 +0000 (18:13 +0200)
lightning/src/ln/mod.rs

index 92edb061165b04a9fe611c957dfdf43ada6dff1b..2c9fe710a26315103f0830d811d410141e85d5fb 100644 (file)
@@ -74,6 +74,13 @@ pub use self::peer_channel_encryptor::LN_MAX_MSG_LEN;
 /// 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 PaymentHash(pub [u8; 32]);
+
+impl core::fmt::Display for PaymentHash {
+       fn fmt(&self, f: &mut core::fmt::Formatter) -> core::fmt::Result {
+               crate::util::logger::DebugBytes(&self.0).fmt(f)
+       }
+}
+
 /// payment_preimage type, use to route payment between hop
 ///
 /// This is not exported to bindings users as we just use [u8; 32] directly