fix block height out of range on full page blocks viewer

This commit is contained in:
Antoni Spaanderman 2022-01-24 20:26:02 +01:00
parent 44021a3cb3
commit f111c006ce
No known key found for this signature in database
GPG Key ID: AE0B68E552E5DF8C

View File

@ -109,8 +109,12 @@ export class LatestBlocksComponent implements OnInit, OnDestroy {
if (this.isLoading) {
return;
}
const height = this.blocks[this.blocks.length - 1].height - 1;
if (height < 0) {
return;
}
this.isLoading = true;
this.electrsApiService.listBlocks$(this.blocks[this.blocks.length - 1].height - 1)
this.electrsApiService.listBlocks$(height)
.subscribe((blocks) => {
this.blocks = this.blocks.concat(blocks);
this.isLoading = false;