We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5102af2 commit 56bbc57Copy full SHA for 56bbc57
packages/eth-providers/src/base-provider.ts
@@ -577,7 +577,7 @@ export abstract class BaseProvider extends AbstractProvider {
577
const cached = this.apiCache.get(blockHash);
578
if (cached) return cached;
579
580
- const apiAt = await this.getApiAt(blockHash);
+ const apiAt = await this.api.at(blockHash);
581
this.apiCache.set(blockHash, apiAt); // cache key is blockhash, so no need to check for finalization
582
583
return apiAt;
0 commit comments