Skip to content

Commit 33a3d1f

Browse files
committed
f! docs
1 parent 2d0a0d0 commit 33a3d1f

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

lightning/src/chain/chaininterface.rs

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,8 +39,13 @@ pub trait BroadcasterInterface {
3939
/// estimation.
4040
#[derive(Clone, Copy, Debug, Hash, PartialEq, Eq)]
4141
pub enum ConfirmationTarget {
42-
/// We are happy with a transaction eventually confirming, regardless of how long it may take,
43-
/// using the absolute minimum feerate required to enter most node mempools across the network.
42+
/// We'd like a transaction to confirm in the future, but don't want to commit most of the fees
43+
/// required to do so yet. The remaining fees will come via a Child-Pays-For-Parent (CPFP) fee
44+
/// bump of the transaction.
45+
///
46+
/// The feerate returned should be the absolute minimum feerate required to enter most node
47+
/// mempools across the network. Note that if you are not able to obtain this feerate estimate,
48+
/// you should likely use the furthest-out estimate allowed by your fee estimator.
4449
MempoolMinimum,
4550
/// We are happy with a transaction confirming slowly, at least within a day or so worth of
4651
/// blocks.

0 commit comments

Comments
 (0)