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 cec8ce0 commit 8332072Copy full SHA for 8332072
lightning/src/chain/chaininterface.rs
@@ -41,10 +41,10 @@ pub enum ConfirmationTarget {
41
pub trait FeeEstimator {
42
/// Gets estimated satoshis of fee required per 1000 Weight-Units.
43
///
44
- /// Must return a value no smaller than 253 (ie 1 satoshi-per-byte rounded up to ensure later
+ /// Must return a value no smaller than 253 (ie 1 satoshi-per-byte rounded up to ensure later
45
/// round-downs don't put us below 1 satoshi-per-byte).
46
47
- /// This method can be implemented with the following unit conversions:
+ /// This method can be implemented with the following unit conversions:
48
/// * max(satoshis-per-byte * 250, 253)
49
/// * max(satoshis-per-kbyte / 4, 253)
50
fn get_est_sat_per_1000_weight(&self, confirmation_target: ConfirmationTarget) -> u32;
0 commit comments