mempool/frontend/src/app/shared/components/fee-rate/fee-rate.component.html

4 lines
378 B
HTML
Raw Normal View History

2023-06-15 15:16:49 -04:00
<ng-container *ngIf="rateUnits$ | async as units">
<ng-container *ngIf="units !== 'wu'">{{ fee / (weight / 4) | feeRounding:rounding }} <span *ngIf="showUnit" [class]="unitClass">sat/vB</span></ng-container>
<ng-container *ngIf="units === 'wu'">{{ fee / weight | feeRounding:rounding }} <span *ngIf="showUnit" [class]="unitClass">sat/WU</span></ng-container>
</ng-container>