You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The LowerBoundedFeeEstimator wrapper is used internally to wrap a
user-provided FeeEstimator to ensure that we clip fee estimates to no
less than 253 sats/KW.
Copy file name to clipboardExpand all lines: lightning/src/ln/channelmanager.rs
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -36,7 +36,7 @@ use bitcoin::secp256k1;
36
36
37
37
use chain;
38
38
use chain::{Confirm,ChannelMonitorUpdateErr,Watch,BestBlock};
39
-
use chain::chaininterface::{BroadcasterInterface,ConfirmationTarget,FeeEstimator};
39
+
use chain::chaininterface::{BroadcasterInterface,ConfirmationTarget,FeeEstimator,LowerBoundedFeeEstimator};
40
40
use chain::channelmonitor::{ChannelMonitor,ChannelMonitorUpdate,ChannelMonitorUpdateStep,HTLC_FAIL_BACK_BUFFER,CLTV_CLAIM_BUFFER,LATENCY_GRACE_PERIOD_BLOCKS,ANTI_REORG_DELAY,MonitorEvent,CLOSED_CHANNEL_UPDATE_ID};
41
41
use chain::transaction::{OutPoint,TransactionData};
42
42
// Since this struct is returned in `list_channels` methods, expose it here in case users want to
0 commit comments