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