Skip to content

Commit

Permalink
fix merge
Browse files Browse the repository at this point in the history
  • Loading branch information
carneiro-cw committed Mar 18, 2024
1 parent 9dac937 commit bff37d1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/eth/storage/hybrid/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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<Option<Slot>> {
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<Option<Block>> {
Expand Down

0 comments on commit bff37d1

Please sign in to comment.