diff --git a/src/Pricing/PercentageFee.ts b/src/Pricing/PercentageFee.ts index 2913020..303791b 100644 --- a/src/Pricing/PercentageFee.ts +++ b/src/Pricing/PercentageFee.ts @@ -13,7 +13,7 @@ export class PercentageFee implements Fee { public describe(): string { const numberFormatter = new NumberFormatter(); - return numberFormatter.formatPercentage(this.percentage / 100, 3); + return numberFormatter.formatPercentage(this.percentage / 100, 4); } public getExtendedDescription(): string[] {