Merge pull request #2359 from domZippilli/2023-06-monitor-updating-persister
[rust-lightning] / lightning / src / ln / channel_id.rs
index 332fc355ed38ac8eb5abe1c974e92c8ebe606ead..cdbcd302929c70b1a2a5c59dd51da2d22df39e2e 100644 (file)
@@ -21,7 +21,9 @@ use core::fmt;
 use core::ops::Deref;
 
 /// A unique 32-byte identifier for a channel.
-/// Depending on how the ID is generated, several varieties are distinguished (but all are stored as 32 bytes): _v1_ and _temporary_.
+/// Depending on how the ID is generated, several varieties are distinguished
+/// (but all are stored as 32 bytes):
+///   _v1_ and _temporary_.
 /// A _v1_ channel ID is generated based on funding tx outpoint (txid & index).
 /// A _temporary_ ID is generated randomly.
 /// (Later revocation-point-based _v2_ is a possibility.)
@@ -29,7 +31,7 @@ use core::ops::Deref;
 ///
 /// This is not exported to bindings users as we just use [u8; 32] directly.
 #[derive(Clone, Copy, Debug, Eq, Hash, Ord, PartialEq, PartialOrd)]
-pub struct ChannelId (pub [u8; 32]);
+pub struct ChannelId(pub [u8; 32]);
 
 impl ChannelId {
        /// Create _v1_ channel ID based on a funding TX ID and output index