diff --git a/crates/fuel-core/src/state/historical_rocksdb.rs b/crates/fuel-core/src/state/historical_rocksdb.rs index 0f0cc91126f..675b60b2100 100644 --- a/crates/fuel-core/src/state/historical_rocksdb.rs +++ b/crates/fuel-core/src/state/historical_rocksdb.rs @@ -375,8 +375,7 @@ where if let Some(v1_changes) = v1_changes { migration_transaction .storage_as_mut::>() - .insert(&height, &v1_changes) - .unwrap(); + .insert(&height, &v1_changes)?; self.db .commit_changes(&migration_transaction.into_changes())?;