Skip to content

Commit

Permalink
chore: bump DLC fee rate
Browse files Browse the repository at this point in the history
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
  • Loading branch information
bonomat committed Aug 18, 2023
1 parent 3de0fe3 commit 4932d2d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/ln-dlc-node/src/config.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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.
///
Expand Down

0 comments on commit 4932d2d

Please sign in to comment.