/api/v1/mining/difficulty/{interval} is not used

This commit is contained in:
nymkappa
2022-03-30 12:10:20 +09:00
parent fb0e7ec240
commit 12ec6bbf67
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` +