diff --git a/crates/fuel-core/src/state/historical_rocksdb.rs b/crates/fuel-core/src/state/historical_rocksdb.rs index b70aa0dfc1d..afaf980a19d 100644 --- a/crates/fuel-core/src/state/historical_rocksdb.rs +++ b/crates/fuel-core/src/state/historical_rocksdb.rs @@ -207,7 +207,7 @@ where let migration_in_progress = match lock_guard { Err(poisoned) => { // We should only write to the lock when we initialize the DB, and when the migration finishes. - // If the lock is poisoned, then the migration process was trying to aquire the lock in writing + // If the lock is poisoned, then the migration process was trying to acquire the lock in writing // mode to update the migration status to completed. In this case, we can assume that the migration // is complete. tracing::warn!("The lock on the migration status is poisoned ({:?}) Assuming that the migration is complete.", poisoned);