diff --git a/crates/fuel-core/src/database/genesis_progress.rs b/crates/fuel-core/src/database/genesis_progress.rs index e4f7d39f526..11883857572 100644 --- a/crates/fuel-core/src/database/genesis_progress.rs +++ b/crates/fuel-core/src/database/genesis_progress.rs @@ -12,7 +12,7 @@ use fuel_core_storage::{ }, column::Column, structured_storage::TableWithBlueprint, - tables::ContractsInfo, + tables::ContractsLatestUtxo, Mappable, MerkleRoot, Result, @@ -185,7 +185,7 @@ impl Database { pub fn genesis_loaded_contracts( &self, ) -> impl Iterator> + '_ { - self.iter_all::(None) + self.iter_all::(None) .map_ok(|(contract_id, _)| contract_id) .map(|res| res.map_err(Into::into)) }