Show oob fees on tx details
This commit is contained in:
		
							parent
							
								
									4dbcd6ca18
								
							
						
					
					
						commit
						de9fae5cd7
					
				| @ -606,7 +606,14 @@ | ||||
|   @if (!isLoadingTx) { | ||||
|     <tr> | ||||
|       <td class="td-width" i18n="transaction.fee|Transaction fee">Fee</td> | ||||
|       <td>{{ tx.fee | number }} <span class="symbol" i18n="shared.sat|sat">sat</span> <span class="fiat"><app-fiat [blockConversion]="tx.price" [value]="tx.fee"></app-fiat></span></td> | ||||
|       <td>{{ tx.fee | number }} <span class="symbol" i18n="shared.sat|sat">sat</span>  | ||||
|         @if (accelerationInfo?.bidBoost) { | ||||
|           <span class="oobFees"> +{{ accelerationInfo.bidBoost | number }} </span><span class="symbol" i18n="shared.sat|sat">sat</span> | ||||
|         } @else if (tx.feeDelta) { | ||||
|           <span class="oobFees"> +{{ tx.feeDelta | number }} </span><span class="symbol" i18n="shared.sat|sat">sat</span> | ||||
|         } | ||||
|         <span class="fiat"><app-fiat [blockConversion]="tx.price" [value]="tx.fee + (accelerationInfo?.bidBoost || tx.feeDelta || 0)"></app-fiat></span> | ||||
|       </td> | ||||
|     </tr> | ||||
|   } @else { | ||||
|     <ng-container *ngTemplateOutlet="skeletonDetailsRow"></ng-container> | ||||
|  | ||||
| @ -332,3 +332,7 @@ | ||||
|   top: -1px; | ||||
|   margin-right: 2px; | ||||
| } | ||||
| 
 | ||||
| .oobFees { | ||||
|   color: #905cf4; | ||||
| } | ||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user