From 6e1528a64a4b48ff0426f21452bdaad99443756a Mon Sep 17 00:00:00 2001 From: Arsenii Kulikov Date: Thu, 5 Dec 2024 05:11:40 +0400 Subject: [PATCH] fix doc --- crates/rpc/rpc-eth-types/src/cache/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/rpc/rpc-eth-types/src/cache/mod.rs b/crates/rpc/rpc-eth-types/src/cache/mod.rs index 28c38ef468cd..168638872407 100644 --- a/crates/rpc/rpc-eth-types/src/cache/mod.rs +++ b/crates/rpc/rpc-eth-types/src/cache/mod.rs @@ -156,7 +156,7 @@ impl EthStateCache { rx.await.map_err(|_| ProviderError::CacheServiceUnavailable)? } - /// Requests the [Receipt] for the block hash + /// Requests the receipts for the block hash /// /// Returns `None` if the block was not found. pub async fn get_receipts(&self, block_hash: B256) -> ProviderResult>>> {