Crate bitcoin_coin_selection

Crate bitcoin_coin_selection 

Source
Expand description

Rust Bitcoin coin selection library.

Efficient algorithms for choosing an optimal UTXO set.

Traits§

WeightedUtxo
Behavior needed for coin-selection.

Functions§

select_coinsrand
Attempt a match with select_coins_bnb falling back to select_coins_srd.
select_coins_bnb
Performs a deterministic depth first branch and bound search for a changeless solution.
select_coins_srdrand
Randomize the input set and select coins until the target is reached.