Block reward calculation fix.
This commit is contained in:
		
							parent
							
								
									c0d57b399c
								
							
						
					
					
						commit
						5a961e1744
					
				@ -62,7 +62,7 @@ export class BlockComponent implements OnInit {
 | 
			
		||||
      this.isLoadingBlock = false;
 | 
			
		||||
      this.setBlockSubsidy();
 | 
			
		||||
      if (block.reward) {
 | 
			
		||||
        this.fees = block.reward / 100000000;
 | 
			
		||||
        this.fees = block.reward / 100000000 - this.blockSubsidy;
 | 
			
		||||
      }
 | 
			
		||||
      this.getBlockTransactions(block.id);
 | 
			
		||||
    },
 | 
			
		||||
 | 
			
		||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user