From: Matt Corallo Date: Fri, 17 Dec 2021 00:32:28 +0000 (+0000) Subject: Remove trailing whitespace in the FeeEstimator interface X-Git-Tag: v0.0.104^2~3 X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=commitdiff_plain;h=a3330acecfd50611a3b3ab09dc4dd564603bd4dc;p=rust-lightning Remove trailing whitespace in the FeeEstimator interface --- diff --git a/lightning/src/chain/chaininterface.rs b/lightning/src/chain/chaininterface.rs index cca51e318..9a45a88ff 100644 --- a/lightning/src/chain/chaininterface.rs +++ b/lightning/src/chain/chaininterface.rs @@ -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;