Skip to content

Commit

Permalink
chore: remove redundant clone
Browse files Browse the repository at this point in the history
  • Loading branch information
aleksuss committed Nov 5, 2024
1 parent 3d0ffd1 commit 550b718
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion refiner-lib/src/near_stream.rs
Original file line number Diff line number Diff line change
Expand Up @@ -409,7 +409,7 @@ pub mod tests {
) -> Self {
let engine_path = db_dir.path().join("engine");
let tracker_path = db_dir.path().join("tracker");
crate::storage::init_storage(engine_path.clone(), &account_id, chain_id);
crate::storage::init_storage(&engine_path, &account_id, chain_id);
let engine_context = EngineContext::new(&engine_path, account_id, chain_id).unwrap();
let tx_tracker = TxHashTracker::new(tracker_path, 0).unwrap();

Expand Down

0 comments on commit 550b718

Please sign in to comment.