diff --git a/apps/api/src/services/data-provider/eod-historical-data/eod-historical-data.service.ts b/apps/api/src/services/data-provider/eod-historical-data/eod-historical-data.service.ts index 8f9528ead..4f1113d3f 100644 --- a/apps/api/src/services/data-provider/eod-historical-data/eod-historical-data.service.ts +++ b/apps/api/src/services/data-provider/eod-historical-data/eod-historical-data.service.ts @@ -197,15 +197,10 @@ export class EodHistoricalDataService implements DataProviderInterface { private convertCurrency(aCurrency: string) { let currency = aCurrency; - console.log('convertCurrency', currency); - if (currency === 'GBX') { currency = 'GBp'; } - console.log(currency); - console.log('---'); - return currency; }