Skip to content

Commit

Permalink
Merge pull request #278 from Uniswap/enable-22a2
Browse files Browse the repository at this point in the history
chore: enable 22a2
  • Loading branch information
marktoda authored Mar 6, 2024
2 parents db0a28c + 72eb522 commit 66e6dfb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/quoters/WebhookQuoter.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ import axios, { AxiosError, AxiosResponse } from 'axios';
import Logger from 'bunyan';
import { v4 as uuidv4 } from 'uuid';

import { Quoter, QuoterType } from '.';
import {
AnalyticsEvent,
AnalyticsEventType,
Expand All @@ -18,7 +19,6 @@ import { FirehoseLogger } from '../providers/analytics';
import { CircuitBreakerConfigurationProvider } from '../providers/circuit-breaker';
import { FillerComplianceConfigurationProvider } from '../providers/compliance';
import { timestampInMstoISOString } from '../util/time';
import { Quoter, QuoterType } from '.';

// TODO: shorten, maybe take from env config
const WEBHOOK_TIMEOUT_MS = 500;
Expand All @@ -35,7 +35,7 @@ export class WebhookQuoter implements Quoter {
private webhookProvider: WebhookConfigurationProvider,
private circuitBreakerProvider: CircuitBreakerConfigurationProvider,
private complianceProvider: FillerComplianceConfigurationProvider,
_allow_list: Set<string> = new Set<string>(['531679099f2a17818ed35cad21443a303c5ee2426cdbda547cfe6aec3d3b0215'])
_allow_list: Set<string> = new Set<string>(['22a23abb38e0612e58ebdd15756b18110e6aac078645210afe0c60f8220307b0'])
) {
this.log = _log.child({ quoter: 'WebhookQuoter' });
this.ALLOW_LIST = _allow_list;
Expand Down

0 comments on commit 66e6dfb

Please sign in to comment.