fix block height out of range on full page blocks viewer
This commit is contained in:
		
							parent
							
								
									44021a3cb3
								
							
						
					
					
						commit
						f111c006ce
					
				@ -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;
 | 
			
		||||
 | 
			
		||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user