Skip to content

Commit

Permalink
remove clone
Browse files Browse the repository at this point in the history
  • Loading branch information
cernicc committed Nov 26, 2024
1 parent 4caaa98 commit 65bf3ef
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion storagext/cli/src/cmd/market.rs
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ impl MarketCommand {
}
}
MarketCommand::RetrieveDeal { deal_id } => {
if let Some(deal) = client.retrieve_deal(deal_id.clone()).await? {
if let Some(deal) = client.retrieve_deal(deal_id).await? {
tracing::debug!("Deal {:?}", deal);

println!("{}", output_format.format(&deal)?);
Expand Down

0 comments on commit 65bf3ef

Please sign in to comment.