Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/migrate/migrate_from_mongo_to_rocksdb.rs
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ pub fn migrate_from_mongo_to_rocksdb(mongo_uri: &str, rocks_db_path: &str, cname
rocks_db.clear()?;

// Migrate Merkle records
let merkle_collection = mongo_db.merkel_collection()?;
let merkle_collection = mongo_db.merkle_collection()?;
let merkle_cursor = merkle_collection.find(doc! {}, None)?;

let mut merkle_count = 0;
Expand Down