Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
gostkin committed Nov 30, 2022
1 parent 74fbc99 commit cfedd40
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion utxo-selection/src/algorithms/thermostat.rs
Expand Up @@ -625,7 +625,7 @@ impl InputSelectionAlgorithm for Thermostat {
&mut self,
available_inputs: Vec<Self::InputUtxo>,
) -> anyhow::Result<()> {
let mut utxos = self.available_utxos.thaw();
let mut utxos = UTxOStore::new().thaw();
for input in available_inputs.into_iter() {
utxos.insert(input)?
}
Expand Down

0 comments on commit cfedd40

Please sign in to comment.