pub trait TxBuilderExt<'a, A>: BorrowMut<TxBuilder<'a, A>> {
// Provided method
fn add_fee_anchor_spend(&mut self, anchor: OutPoint, output: &TxOut)
where A: CoinSelectionAlgorithm { ... }
}Expand description
An extension trait for TxBuilder.
Provided Methods§
Sourcefn add_fee_anchor_spend(&mut self, anchor: OutPoint, output: &TxOut)where
A: CoinSelectionAlgorithm,
fn add_fee_anchor_spend(&mut self, anchor: OutPoint, output: &TxOut)where
A: CoinSelectionAlgorithm,
Add an input to the tx that spends a fee anchor.