Merge branch 'master' into nymkappa/feature/use-block-count-timespan

This commit is contained in:
wiz
2022-05-25 20:16:32 +09:00
committed by GitHub
21 changed files with 238 additions and 473 deletions

View File

@@ -149,7 +149,7 @@ export class ApiService {
getBlocks$(from: number): Observable<BlockExtended[]> {
return this.httpClient.get<BlockExtended[]>(
this.apiBaseUrl + this.apiBasePath + `/api/v1/blocks-extras` +
this.apiBaseUrl + this.apiBasePath + `/api/v1/blocks` +
(from !== undefined ? `/${from}` : ``)
);
}