Merge pull request #1185 from antonilol/fee-visibility

fix 0 sat/vB not displaying
This commit is contained in:
softsimon 2022-03-06 10:28:51 +01:00 committed by GitHub
commit 3e50e4541b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -240,7 +240,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>