File tree Expand file tree Collapse file tree 1 file changed +3
-8
lines changed Expand file tree Collapse file tree 1 file changed +3
-8
lines changed Original file line number Diff line number Diff line change @@ -70,14 +70,9 @@ pub const FEERATE_FLOOR_SATS_PER_KW: u32 = 253;
70
70
71
71
/// Wraps a `Deref` to a `FeeEstimator` so that any fee estimations provided by it
72
72
/// are bounded below by `FEERATE_FLOOR_SATS_PER_KW` (253 sats/KW)
73
- pub ( crate ) struct LowerBoundedFeeEstimator < F : Deref > ( pub F )
74
- where
75
- F :: Target : FeeEstimator ;
76
-
77
- impl < F : Deref > LowerBoundedFeeEstimator < F >
78
- where
79
- F :: Target : FeeEstimator ,
80
- {
73
+ pub ( crate ) struct LowerBoundedFeeEstimator < F : Deref > ( pub F ) where F :: Target : FeeEstimator ;
74
+
75
+ impl < F : Deref > LowerBoundedFeeEstimator < F > where F :: Target : FeeEstimator {
81
76
/// Creates a new `LowerBoundedFeeEstimator` which wraps the provided fee_estimator
82
77
pub fn new ( fee_estimator : F ) -> Self {
83
78
LowerBoundedFeeEstimator ( fee_estimator)
You can’t perform that action at this time.
0 commit comments