Fix rounded vsize in block summaries
This commit is contained in:
		
							parent
							
								
									057456504c
								
							
						
					
					
						commit
						9c6799e193
					
				@ -130,7 +130,7 @@ class Blocks {
 | 
				
			|||||||
    const stripped = block.tx.map((tx) => {
 | 
					    const stripped = block.tx.map((tx) => {
 | 
				
			||||||
      return {
 | 
					      return {
 | 
				
			||||||
        txid: tx.txid,
 | 
					        txid: tx.txid,
 | 
				
			||||||
        vsize: tx.vsize,
 | 
					        vsize: tx.weight / 4,
 | 
				
			||||||
        fee: tx.fee ? Math.round(tx.fee * 100000000) : 0,
 | 
					        fee: tx.fee ? Math.round(tx.fee * 100000000) : 0,
 | 
				
			||||||
        value: Math.round(tx.vout.reduce((acc, vout) => acc + (vout.value ? vout.value : 0), 0) * 100000000)
 | 
					        value: Math.round(tx.vout.reduce((acc, vout) => acc + (vout.value ? vout.value : 0), 0) * 100000000)
 | 
				
			||||||
      };
 | 
					      };
 | 
				
			||||||
 | 
				
			|||||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user