We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent be7d3d1 commit ebbaa69Copy full SHA for ebbaa69
lightning/src/chain/chaininterface.rs
@@ -115,6 +115,9 @@ pub trait FeeEstimator: Sync + Send {
115
fn get_est_sat_per_1000_weight(&self, confirmation_target: ConfirmationTarget) -> u64;
116
}
117
118
+/// Minimum relay fee as required by bitcoin network mempool policy.
119
+pub const MIN_RELAY_FEE_SAT_PER_1000_WEIGHT: u64 = 4000;
120
+
121
/// Utility for tracking registered txn/outpoints and checking for matches
122
pub struct ChainWatchedUtil {
123
watch_all: bool,
0 commit comments