Skip to content

Commit

Permalink
fix(backend): rm unused telemetry service methods
Browse files Browse the repository at this point in the history
  • Loading branch information
BlairCurrey committed Jul 15, 2024
1 parent c04e2a5 commit 10fcdf8
Showing 1 changed file with 0 additions and 10 deletions.
10 changes: 0 additions & 10 deletions packages/backend/src/telemetry/service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,6 @@ export interface TelemetryService {
value: number,
attributes?: Record<string, unknown>
): void
getBaseAssetCode(): string
getBaseScale(): number
}

interface TelemetryServiceDependencies extends BaseService {
Expand Down Expand Up @@ -188,12 +186,4 @@ class TelemetryServiceImpl implements TelemetryService {
}
return converted
}

getBaseAssetCode(): string {
return this.deps.baseAssetCode
}

getBaseScale(): number {
return this.deps.baseScale
}
}

0 comments on commit 10fcdf8

Please sign in to comment.