We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
getBlockReceipts
1 parent cac0858 commit 3a7c7f7Copy full SHA for 3a7c7f7
packages/relay/src/lib/services/ethService/blockService/BlockService.ts
@@ -138,13 +138,6 @@ export class BlockService implements IBlockService {
138
throw predefined.RESOURCE_NOT_FOUND(`Block: ${blockHashOrBlockNumber}`);
139
}
140
141
- const blockNumber = block.number;
142
- const cacheKey = `${constants.CACHE_KEY.ETH_GET_BLOCK_RECEIPTS}_${blockNumber}`;
143
- const cachedResponse = await this.cacheService.getAsync(cacheKey, constants.ETH_GET_BLOCK_RECEIPTS, requestDetails);
144
- if (cachedResponse) {
145
- return cachedResponse;
146
- }
147
-
148
const paramTimestamp: IContractResultsParams = {
149
timestamp: [`lte:${block.timestamp.to}`, `gte:${block.timestamp.from}`],
150
};
0 commit comments