mirror of
https://github.com/mempool/mempool.git
synced 2024-12-28 01:04:28 +01:00
Display transaction fees even if they are zero.
This commit is contained in:
parent
a4c49d42af
commit
6b3e84255a
@ -63,20 +63,18 @@
|
|||||||
<div class="col-sm">
|
<div class="col-sm">
|
||||||
<table class="table table-borderless table-striped">
|
<table class="table table-borderless table-striped">
|
||||||
<tbody>
|
<tbody>
|
||||||
<ng-template [ngIf]="tx.fee">
|
<tr>
|
||||||
<tr>
|
<td class="td-width">Fee</td>
|
||||||
<td class="td-width">Fee</td>
|
<td>{{ tx.fee | number }} sat (<app-fiat [value]="tx.fee"></app-fiat>)</td>
|
||||||
<td>{{ tx.fee | number }} sat (<app-fiat [value]="tx.fee"></app-fiat>)</td>
|
</tr>
|
||||||
</tr>
|
<tr>
|
||||||
<tr>
|
<td>Fee per vByte</td>
|
||||||
<td>Fee per vByte</td>
|
<td>
|
||||||
<td>
|
{{ tx.fee / (tx.weight / 4) | number : '1.1-1' }} sat/vB
|
||||||
{{ tx.fee / (tx.weight / 4) | number : '1.1-1' }} sat/vB
|
|
||||||
|
<app-tx-fee-rating *ngIf="tx.fee" [tx]="tx"></app-tx-fee-rating>
|
||||||
<app-tx-fee-rating [tx]="tx"></app-tx-fee-rating>
|
</td>
|
||||||
</td>
|
</tr>
|
||||||
</tr>
|
|
||||||
</ng-template>
|
|
||||||
</tbody>
|
</tbody>
|
||||||
</table>
|
</table>
|
||||||
</div>
|
</div>
|
||||||
|
@ -0,0 +1,4 @@
|
|||||||
|
.badge {
|
||||||
|
position: relative;
|
||||||
|
top: -1px;
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user