diff --git a/mutiny-core/src/fees.rs b/mutiny-core/src/fees.rs index 43f7a1de8..d21123d1c 100644 --- a/mutiny-core/src/fees.rs +++ b/mutiny-core/src/fees.rs @@ -191,7 +191,6 @@ impl FeeEstimator for MutinyFeeEstimator { match confirmation_target { ConfirmationTarget::MinAllowedNonAnchorChannelRemoteFee => fee - 250, // helps with rounding errors ConfirmationTarget::MinAllowedAnchorChannelRemoteFee => 250, // just pin to 1 sat/vbyte to prevent force closes - ConfirmationTarget::AnchorChannelFee => (fee / 2).max(250), // do half the mempool minimum just to prevent force closes _ => fee, } }