From e671b0cf952bdd024ae45eaed56dc6293521655a Mon Sep 17 00:00:00 2001 From: acerone85 Date: Fri, 27 Sep 2024 11:16:10 +0100 Subject: [PATCH] Typo --- crates/fuel-core/src/state/historical_rocksdb.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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);