From 4932d2dfde71b1b5ed7d7d5c1d6e95451586e052 Mon Sep 17 00:00:00 2001 From: Philipp Hoenisch Date: Fri, 18 Aug 2023 13:25:37 +0200 Subject: [PATCH] chore: bump DLC fee rate A fix fee rate of 4 is not safe anymore as the mempool has been congested since a long time purging transactions with a low fee. We clearly need anchor outputs, but this is an attempt to at least be able to force close positions --- crates/ln-dlc-node/src/config.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/ln-dlc-node/src/config.rs b/crates/ln-dlc-node/src/config.rs index d6df18789..9a3590076 100644 --- a/crates/ln-dlc-node/src/config.rs +++ b/crates/ln-dlc-node/src/config.rs @@ -16,7 +16,7 @@ pub const LIQUIDITY_MULTIPLIER: u64 = 2; /// Sats/vbyte rate for position /// /// The coordinator and the app have to align on this to agree on the fees. -pub const CONTRACT_TX_FEE_RATE: u64 = 4; +pub const CONTRACT_TX_FEE_RATE: u64 = 7; /// The speed at which we want a transaction to confirm used for feerate estimation. ///