From bff37d1b524252307c9f2347dd8d04c9d7766223 Mon Sep 17 00:00:00 2001 From: Daniel Freire Date: Mon, 18 Mar 2024 16:52:33 -0300 Subject: [PATCH] fix merge --- src/eth/storage/hybrid/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/eth/storage/hybrid/mod.rs b/src/eth/storage/hybrid/mod.rs index beca9d5f5..554cc6533 100644 --- a/src/eth/storage/hybrid/mod.rs +++ b/src/eth/storage/hybrid/mod.rs @@ -255,7 +255,7 @@ impl PermanentStorage for HybridPermanentStorage { async fn maybe_read_slot(&self, address: &Address, slot_index: &SlotIndex, point_in_time: &StoragePointInTime) -> anyhow::Result> { tracing::debug!(%address, %slot_index, ?point_in_time, "reading slot"); - self.hybrid_state.get_slot_at_point(address, slot_index, point_in_time).await + self.hybrid_state.read().await.get_slot_at_point(address, slot_index, point_in_time).await } async fn read_block(&self, selection: &BlockSelection) -> anyhow::Result> {