diff --git a/crates/fraud_proofs/global_merkle_root/storage/src/update.rs b/crates/fraud_proofs/global_merkle_root/storage/src/update.rs index 966e0ee898..e3ff1946e0 100644 --- a/crates/fraud_proofs/global_merkle_root/storage/src/update.rs +++ b/crates/fraud_proofs/global_merkle_root/storage/src/update.rs @@ -12,7 +12,6 @@ use alloc::{ vec::Vec, }; use fuel_core_storage::{ - iter::IterableStore, kv_store::KeyValueInspect, transactional::StorageTransaction, StorageAsMut, @@ -89,7 +88,7 @@ pub trait UpdateMerklizedTables { impl UpdateMerklizedTables for StorageTransaction where - Storage: KeyValueInspect + IterableStore, + Storage: KeyValueInspect, { fn update_merklized_tables( &mut self, @@ -118,7 +117,7 @@ struct UpdateMerklizedTablesTransaction<'a, Storage> { impl<'a, Storage> UpdateMerklizedTablesTransaction<'a, Storage> where - Storage: KeyValueInspect + IterableStore, + Storage: KeyValueInspect, { // TODO(#2588): Proper result type pub fn process_block(&mut self, block: &Block) -> anyhow::Result<()> {