Skip to content

Commit cd21a35

Browse files
authored
Merge pull request #414 from TheBlueMatt/2019-12-347-nits
347 with travis fix and a few nits.
2 parents 821357e + 4275b77 commit cd21a35

File tree

5 files changed

+1113
-182
lines changed

5 files changed

+1113
-182
lines changed

fuzz/fuzz_targets/full_stack_target.rs

Lines changed: 5 additions & 1 deletion
Large diffs are not rendered by default.

lightning/src/chain/chaininterface.rs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -115,6 +115,9 @@ pub trait FeeEstimator: Sync + Send {
115115
fn get_est_sat_per_1000_weight(&self, confirmation_target: ConfirmationTarget) -> u64;
116116
}
117117

118+
/// Minimum relay fee as required by bitcoin network mempool policy.
119+
pub const MIN_RELAY_FEE_SAT_PER_1000_WEIGHT: u64 = 4000;
120+
118121
/// Utility for tracking registered txn/outpoints and checking for matches
119122
pub struct ChainWatchedUtil {
120123
watch_all: bool,

0 commit comments

Comments
 (0)