Merge pull request #1482 from mempool/nymkappa/feature/remove-unused-endpoint

Remove unused `/api/v1/mining/difficulty/{interval}` endpoint
This commit is contained in:
softsimon
2022-03-31 19:38:24 +04:00
committed by GitHub
3 changed files with 0 additions and 21 deletions

View File

@@ -154,13 +154,6 @@ export class ApiService {
);
}
getHistoricalDifficulty$(interval: string | undefined): Observable<any> {
return this.httpClient.get<any[]>(
this.apiBaseUrl + this.apiBasePath + `/api/v1/mining/difficulty` +
(interval !== undefined ? `/${interval}` : '')
);
}
getHistoricalHashrate$(interval: string | undefined): Observable<any> {
return this.httpClient.get<any[]>(
this.apiBaseUrl + this.apiBasePath + `/api/v1/mining/hashrate` +