X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=blobdiff_plain;f=lightning%2Fsrc%2Fchain%2Fchaininterface.rs;h=cbf609485ce1984800fa991e22d952e33ab5db56;hb=28c9b56113ff1ebb1b505a2c979c55c1626aa06b;hp=9a45a88ffe407898e1b38ee42f3356856b7f9cd4;hpb=2a8a396f1ed612ed0cbd2b6cef7d1816b128c5c9;p=rust-lightning diff --git a/lightning/src/chain/chaininterface.rs b/lightning/src/chain/chaininterface.rs index 9a45a88f..cbf60948 100644 --- a/lightning/src/chain/chaininterface.rs +++ b/lightning/src/chain/chaininterface.rs @@ -13,6 +13,8 @@ //! Includes traits for monitoring and receiving notifications of new blocks and block //! disconnections, transaction broadcasting, and feerate information requests. +use core::{cmp, ops::Deref}; + use bitcoin::blockdata::transaction::Transaction; /// An interface to send a transaction to the Bitcoin network. @@ -41,14 +43,72 @@ 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 - /// round-downs don't put us below 1 satoshi-per-byte). + /// LDK will wrap this method and ensure that the value returned is 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: - /// * max(satoshis-per-byte * 250, 253) - /// * max(satoshis-per-kbyte / 4, 253) + /// The following unit conversions can be used to convert to sats/KW: + /// * satoshis-per-byte * 250 + /// * satoshis-per-kbyte / 4 fn get_est_sat_per_1000_weight(&self, confirmation_target: ConfirmationTarget) -> u32; } /// Minimum relay fee as required by bitcoin network mempool policy. pub const MIN_RELAY_FEE_SAT_PER_1000_WEIGHT: u64 = 4000; +/// Minimum feerate that takes a sane approach to bitcoind weight-to-vbytes rounding. +/// See the following Core Lightning commit for an explanation: +/// +pub const FEERATE_FLOOR_SATS_PER_KW: u32 = 253; + +/// Wraps a `Deref` to a `FeeEstimator` so that any fee estimations provided by it +/// are bounded below by `FEERATE_FLOOR_SATS_PER_KW` (253 sats/KW). +/// +/// Note that this does *not* implement [`FeeEstimator`] to make it harder to accidentally mix the +/// two. +pub(crate) struct LowerBoundedFeeEstimator(pub F) where F::Target: FeeEstimator; + +impl LowerBoundedFeeEstimator where F::Target: FeeEstimator { + /// Creates a new `LowerBoundedFeeEstimator` which wraps the provided fee_estimator + pub fn new(fee_estimator: F) -> Self { + LowerBoundedFeeEstimator(fee_estimator) + } + + pub fn bounded_sat_per_1000_weight(&self, confirmation_target: ConfirmationTarget) -> u32 { + cmp::max( + self.0.get_est_sat_per_1000_weight(confirmation_target), + FEERATE_FLOOR_SATS_PER_KW, + ) + } +} + +#[cfg(test)] +mod tests { + use super::{FEERATE_FLOOR_SATS_PER_KW, LowerBoundedFeeEstimator, ConfirmationTarget, FeeEstimator}; + + struct TestFeeEstimator { + sat_per_kw: u32, + } + + impl FeeEstimator for TestFeeEstimator { + fn get_est_sat_per_1000_weight(&self, _: ConfirmationTarget) -> u32 { + self.sat_per_kw + } + } + + #[test] + fn test_fee_estimator_less_than_floor() { + let sat_per_kw = FEERATE_FLOOR_SATS_PER_KW - 1; + let test_fee_estimator = &TestFeeEstimator { sat_per_kw }; + let fee_estimator = LowerBoundedFeeEstimator::new(test_fee_estimator); + + assert_eq!(fee_estimator.bounded_sat_per_1000_weight(ConfirmationTarget::Background), FEERATE_FLOOR_SATS_PER_KW); + } + + #[test] + fn test_fee_estimator_greater_than_floor() { + let sat_per_kw = FEERATE_FLOOR_SATS_PER_KW + 1; + let test_fee_estimator = &TestFeeEstimator { sat_per_kw }; + let fee_estimator = LowerBoundedFeeEstimator::new(test_fee_estimator); + + assert_eq!(fee_estimator.bounded_sat_per_1000_weight(ConfirmationTarget::Background), sat_per_kw); + } +}