Browse Source

use static formatter

bwt
Craig Raw 5 years ago
parent
commit
9b43429de9
  1. 5
      src/main/java/com/sparrowwallet/sparrow/control/FiatLabel.java

5
src/main/java/com/sparrowwallet/sparrow/control/FiatLabel.java

@ -87,9 +87,8 @@ public class FiatLabel extends CopyableLabel {
BigDecimal btcBalance = satsBalance.divide(BigDecimal.valueOf(Transaction.SATOSHIS_PER_BITCOIN));
BigDecimal fiatBalance = btcBalance.multiply(BigDecimal.valueOf(getBtcRate()));
DecimalFormat currencyFormat = new DecimalFormat("#,##0.00");
String label = getCurrency().getSymbol() + " " + currencyFormat.format(fiatBalance.doubleValue());
tooltip.setText("1 BTC = " + getCurrency().getSymbol() + " " + currencyFormat.format(getBtcRate()));
String label = getCurrency().getSymbol() + " " + CURRENCY_FORMAT.format(fiatBalance.doubleValue());
tooltip.setText("1 BTC = " + getCurrency().getSymbol() + " " + CURRENCY_FORMAT.format(getBtcRate()));
setText(label);
setTooltip(tooltip);

Loading…
Cancel
Save