mirror of
https://github.com/mempool/mempool.git
synced 2025-02-25 07:07:36 +01:00
Fix: Compare with tx.feePerVsize to determine if modified fee is the same.
refs #401
This commit is contained in:
parent
ed55e86a9d
commit
3967ce0854
1 changed files with 1 additions and 1 deletions
|
@ -179,7 +179,7 @@
|
|||
<td>{{ roundToOneDecimal(cpfpTx) | number : '1.1-1' }} <span i18n="shared.sat-vbyte|sat/vB">sat/vB</span></td>
|
||||
<td class="d-none d-lg-table-cell"><fa-icon *ngIf="roundToOneDecimal(cpfpTx) > tx.feePerVsize; else arrowDown" class="arrow-green" [icon]="['fas', 'angle-double-up']" [fixedWidth]="true"></fa-icon></td>
|
||||
<ng-template #arrowDown>
|
||||
<fa-icon *ngIf="roundToOneDecimal(cpfpTx) !== tx.effectiveFeePerVsize" class="arrow-red" [icon]="['fas', 'angle-double-down']" [fixedWidth]="true"></fa-icon>
|
||||
<fa-icon *ngIf="roundToOneDecimal(cpfpTx) !== tx.feePerVsize" class="arrow-red" [icon]="['fas', 'angle-double-down']" [fixedWidth]="true"></fa-icon>
|
||||
</ng-template>
|
||||
</tr>
|
||||
</ng-template>
|
||||
|
|
Loading…
Add table
Reference in a new issue