Remove last trace of legacy oldestIndexedBlockTimestamp

This commit is contained in:
nymkappa
2022-05-20 10:07:57 +02:00
parent e059b9d379
commit c402422682
7 changed files with 18 additions and 31 deletions

View File

@@ -189,7 +189,7 @@ export class ApiService {
getHistoricalBlockFeeRates$(interval: string | undefined) : Observable<any> {
return this.httpClient.get<any[]>(
this.apiBaseUrl + this.apiBasePath + `/api/v1/mining/blocks/fee-rates` +
(interval !== undefined ? `/${interval}` : '')
(interval !== undefined ? `/${interval}` : ''), { observe: 'response' }
);
}