Skip to content

Commit

Permalink
fix clippy lint
Browse files Browse the repository at this point in the history
  • Loading branch information
SebastienGllmt committed May 13, 2024
1 parent cc9defa commit 013f581
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion indexer/tasks/src/multiera/multiera_projected_nft.rs
Original file line number Diff line number Diff line change
Expand Up @@ -342,7 +342,7 @@ fn find_lock_outputs_for_corresponding_partial_withdrawals(

if withdrawal_assets == nft_data_assets {
withdrawal_input_to_remove = Some((input_hash.clone(), *input_index));
output_data.previous_utxo_tx_hash = input_hash.clone();
output_data.previous_utxo_tx_hash.clone_from(input_hash);
output_data.previous_utxo_tx_output_index = Some(*input_index);
break;
}
Expand Down

0 comments on commit 013f581

Please sign in to comment.