Skip to content

Commit

Permalink
fix: remove cache blocklist
Browse files Browse the repository at this point in the history
  • Loading branch information
doomsower committed Jul 19, 2024
1 parent 3f47fc5 commit ac31777
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/services/RedstoneServiceV3.ts
Original file line number Diff line number Diff line change
Expand Up @@ -38,10 +38,10 @@ export type RedstonePriceFeed = Extract<
{ type: PriceFeedType.REDSTONE_ORACLE }
>;

const CACHE_BLOCKLIST = new Set([
"rsETH_FUNDAMENTAL",
"weETH_FUNDAMENTAL",
"ezETH_FUNDAMENTAL",
const CACHE_BLOCKLIST = new Set<string>([
// "rsETH_FUNDAMENTAL",
// "weETH_FUNDAMENTAL",
// "ezETH_FUNDAMENTAL",
]);

@DI.Injectable(DI.Redstone)
Expand Down

0 comments on commit ac31777

Please sign in to comment.