Skip to content

Commit

Permalink
set 10000 for getMaxBlocksSubgraphDelay for all networks
Browse files Browse the repository at this point in the history
  • Loading branch information
defi-dev committed Dec 14, 2023
1 parent 6c9c6ac commit bcbbbb5
Showing 1 changed file with 2 additions and 6 deletions.
8 changes: 2 additions & 6 deletions app/ConfigGetters.ts
Original file line number Diff line number Diff line change
Expand Up @@ -85,12 +85,8 @@ export function getDefaultNetworkConfig(name) {
};
}

export function getMaxBlocksSubgraphDelay(networkName) {
return (
{
arbitrumOne: 10000,
}[networkName] || 10
);
export function getMaxBlocksSubgraphDelay(_ /*networkName*/) {
return 10000;
}

export function setConfigDefaultValues(config, defaultValues) {
Expand Down

0 comments on commit bcbbbb5

Please sign in to comment.