Skip to content

Commit

Permalink
Merge pull request #3973 from milesap/3972-tradefee
Browse files Browse the repository at this point in the history
Display 2 decimal places for fiat trading fees
  • Loading branch information
ripcurlx authored Feb 21, 2020
2 parents 149e676 + 372e78c commit adafd40
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion desktop/src/main/java/bisq/desktop/util/DisplayUtils.java
Original file line number Diff line number Diff line change
Expand Up @@ -250,7 +250,7 @@ public static String getFeeWithFiatAmount(Coin makerFeeAsCoin,
String fee = makerFeeAsCoin != null ? formatter.formatCoinWithCode(makerFeeAsCoin) : Res.get("shared.na");
String feeInFiatAsString;
if (optionalFeeInFiat != null && optionalFeeInFiat.isPresent()) {
feeInFiatAsString = formatVolumeWithCode(optionalFeeInFiat.get());
feeInFiatAsString = formatAverageVolumeWithCode(optionalFeeInFiat.get());
} else {
feeInFiatAsString = Res.get("shared.na");
}
Expand Down

0 comments on commit adafd40

Please sign in to comment.