Skip to content

Commit 8f05d96

Browse files
author
Conor Okus
committed
Additional detail
1 parent ab15467 commit 8f05d96

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

lightning/src/chain/chaininterface.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,8 +44,9 @@ pub trait FeeEstimator {
4444
/// Must return a value no smaller than 253 (ie 1 satoshi-per-byte rounded up to ensure later
4545
/// round-downs don't put us below 1 satoshi-per-byte).
4646
///
47-
/// This converts to:
47+
/// This translates to taking the max of the fee rate multipled by 250 (1 sat/vbyte) e.g
4848
/// * max(satoshis-per-byte * 250, 253)
49+
/// or
4950
/// * max(satoshis-per-kbyte / 4)
5051
fn get_est_sat_per_1000_weight(&self, confirmation_target: ConfirmationTarget) -> u32;
5152
}

0 commit comments

Comments
 (0)