4 lines
378 B
HTML
4 lines
378 B
HTML
|
<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>
|