From: optout <13562139+optout21@users.noreply.github.com> Date: Tue, 22 Aug 2023 15:58:39 +0000 (+0200) Subject: Add Display to PaymentHash X-Git-Tag: v0.0.117-alpha1~46^2~3 X-Git-Url: http://git.bitcoin.ninja/?a=commitdiff_plain;h=a545683a63e8d9dcc4757d1989eafda81c16bc6c;p=rust-lightning Add Display to PaymentHash --- diff --git a/lightning/src/ln/mod.rs b/lightning/src/ln/mod.rs index 92edb0611..2c9fe710a 100644 --- a/lightning/src/ln/mod.rs +++ b/lightning/src/ln/mod.rs @@ -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