fix 0 sat/vB not displaying

This commit is contained in:
Antoni Spaanderman 2022-01-24 21:35:13 +01:00
parent eb32b13acb
commit 7902f68ada
No known key found for this signature in database
GPG Key ID: AE0B68E552E5DF8C

View File

@ -237,7 +237,7 @@
</div>
<div>
<div class="float-left mt-2-5" *ngIf="!transactionPage && tx.fee">
<div class="float-left mt-2-5" *ngIf="!transactionPage && !tx.vin[0].is_coinbase">
{{ tx.fee / (tx.weight / 4) | feeRounding }} <span class="symbol" i18n="shared.sat-vbyte|sat/vB">sat/vB</span> <span class="d-none d-sm-inline-block">&nbsp;&ndash; {{ tx.fee | number }} <span class="symbol" i18n="shared.sat|sat">sat</span> <span class="fiat"><app-fiat [value]="tx.fee"></app-fiat></span></span>
</div>