You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Describe the enhancement
Add a way to create transactions with bdk::Wallet that only spend confirmed UTXOs.
This could easily be done by adding a corresponding must_only_use_confirmed_tx field to TxParams and ORing it into
Describe the enhancement
Add a way to create transactions with
bdk::Wallet
that only spend confirmed UTXOs.This could easily be done by adding a corresponding
must_only_use_confirmed_tx
field toTxParams
and ORing it intobdk/crates/bdk/src/wallet/mod.rs
Line 1473 in 81c7613
However,
TxParams
is currently pending exposure:bdk/crates/bdk/src/wallet/tx_builder.rs
Line 129 in 81c7613
Use case
This is needed to use BDK's coin selection for bumping transactions generated by LDK, in particular for https://docs.rs/lightning/0.0.116-alpha1/lightning/events/bump_transaction/trait.CoinSelectionSource.html#tymethod.select_confirmed_utxos
The text was updated successfully, but these errors were encountered: