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 9f30b30 commit b43e51fCopy full SHA for b43e51f
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