Introduce PackageTemplae, a replacement of InputMaterial
[rust-lightning] / lightning / src / ln / chan_utils.rs
index 9b44d11964534e9fb968cb6ebc49597225626d8d..28b5a9f8bc9239f15b7a1e0af328de15b3aa2070 100644 (file)
@@ -40,7 +40,7 @@ use core::ops::Deref;
 use chain;
 
 // Maximum size of a serialized HTLCOutputInCommitment
-const HTLC_OUTPUT_IN_COMMITMENT_SIZE: usize = 1 + 8 + 4 + 32 + 5;
+pub(crate) const HTLC_OUTPUT_IN_COMMITMENT_SIZE: usize = 1 + 8 + 4 + 32 + 5;
 
 pub(crate) const MAX_HTLCS: u16 = 483;