File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -359,12 +359,12 @@ impl Utxo {
359
359
pub struct CoinSelection {
360
360
/// The set of UTXOs (with at least 1 confirmation) to spend and use within a transaction
361
361
/// requiring additional fees.
362
- confirmed_utxos : Vec < Utxo > ,
362
+ pub confirmed_utxos : Vec < Utxo > ,
363
363
/// An additional output tracking whether any change remained after coin selection. This output
364
364
/// should always have a value above dust for its given `script_pubkey`. It should not be
365
365
/// spent until the transaction it belongs to confirms to ensure mempool descendant limits are
366
366
/// not met. This implies no other party should be able to spend it except us.
367
- change_output : Option < TxOut > ,
367
+ pub change_output : Option < TxOut > ,
368
368
}
369
369
370
370
/// An abstraction over a bitcoin wallet that can perform coin selection over a set of UTXOs and can
You can’t perform that action at this time.
0 commit comments