Skip to content

Commit

Permalink
Clippy fix
Browse files Browse the repository at this point in the history
  • Loading branch information
mappum committed Nov 16, 2024
1 parent 7342de1 commit d975c83
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/merk/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -306,7 +306,7 @@ impl Merk {
pub fn migrate_from_v0<P: AsRef<Path>>(path: P) -> Result<()> {
let path = path.as_ref().to_path_buf();
let db =
rocksdb::DB::open_cf_descriptors(&Merk::default_db_opts(), &path, column_families())?;
rocksdb::DB::open_cf_descriptors(&Merk::default_db_opts(), path, column_families())?;

let mut iter = db.raw_iterator();
iter.seek_to_first();
Expand Down

0 comments on commit d975c83

Please sign in to comment.