Fix for missing overpaid fees tag on confirmed txs

fixes #483
This commit is contained in:
softsimon 2021-06-11 19:30:33 -05:00
parent 49810b6a47
commit 93c4b1caf1
No known key found for this signature in database
GPG Key ID: 488D7DCFB5A430D7

View File

@ -337,7 +337,7 @@
{{ tx.feePerVsize | number : '1.1-1' }} <span class="symbol" i18n="shared.sat-vbyte|sat/vB">sat/vB</span>
<ng-template [ngIf]="tx.status.confirmed">
&nbsp;
<app-tx-fee-rating *ngIf="tx.fee && (cpfpInfo && !cpfpInfo.bestDescendant && !cpfpInfo.ancestors.length)" [tx]="tx"></app-tx-fee-rating>
<app-tx-fee-rating *ngIf="tx.fee && ((cpfpInfo && !cpfpInfo.bestDescendant && !cpfpInfo.ancestors.length) || !cpfpInfo)" [tx]="tx"></app-tx-fee-rating>
</ng-template>
</td>
</tr>