Remove trailing whitespace in the FeeEstimator interface
authorMatt Corallo <git@bluematt.me>
Fri, 17 Dec 2021 00:32:28 +0000 (00:32 +0000)
committerMatt Corallo <git@bluematt.me>
Fri, 17 Dec 2021 04:35:58 +0000 (04:35 +0000)
lightning/src/chain/chaininterface.rs

index cca51e3185130c4c99f76d4517805fd5129fb029..9a45a88ffe407898e1b38ee42f3356856b7f9cd4 100644 (file)
@@ -41,10 +41,10 @@ pub enum ConfirmationTarget {
 pub trait FeeEstimator {
        /// Gets estimated satoshis of fee required per 1000 Weight-Units.
        ///
-       /// 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
        /// round-downs don't put us below 1 satoshi-per-byte).
        ///
-       /// This method can be implemented with the following unit conversions: 
+       /// This method can be implemented with the following unit conversions:
        ///  * max(satoshis-per-byte * 250, 253)
        ///  * max(satoshis-per-kbyte / 4, 253)
        fn get_est_sat_per_1000_weight(&self, confirmation_target: ConfirmationTarget) -> u32;