Skip to content

Commit 8332072

Browse files
committed
Remove trailing whitespace in the FeeEstimator interface
1 parent cec8ce0 commit 8332072

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lightning/src/chain/chaininterface.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,10 +41,10 @@ pub enum ConfirmationTarget {
4141
pub trait FeeEstimator {
4242
/// Gets estimated satoshis of fee required per 1000 Weight-Units.
4343
///
44-
/// Must return a value no smaller than 253 (ie 1 satoshi-per-byte rounded up to ensure later
44+
/// 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 method can be implemented with the following unit conversions:
47+
/// This method can be implemented with the following unit conversions:
4848
/// * max(satoshis-per-byte * 250, 253)
4949
/// * max(satoshis-per-kbyte / 4, 253)
5050
fn get_est_sat_per_1000_weight(&self, confirmation_target: ConfirmationTarget) -> u32;

0 commit comments

Comments
 (0)