We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b39bc9a commit 11e72b9Copy full SHA for 11e72b9
lightning/src/ln/chan_utils.rs
@@ -42,8 +42,10 @@ use chain;
42
43
pub(crate) const MAX_HTLCS: u16 = 483;
44
45
-pub(super) const HTLC_SUCCESS_TX_WEIGHT: u64 = 703;
46
-pub(super) const HTLC_TIMEOUT_TX_WEIGHT: u64 = 663;
+/// The fee for an HTLC-success transaction
+pub const HTLC_SUCCESS_TX_WEIGHT: u64 = 703;
47
+/// The fee for an HTLC-timeout transaction
48
+pub const HTLC_TIMEOUT_TX_WEIGHT: u64 = 663;
49
50
#[derive(PartialEq)]
51
pub(crate) enum HTLCType {
0 commit comments