mirror of
https://github.com/bisq-network/bisq.git
synced 2024-11-19 01:41:11 +01:00
Merge pull request #3674 from bodymindarts/fix-bsq-monetary-format
Use correct monetary format in BsqFormatter
This commit is contained in:
commit
4c9d915031
@ -72,23 +72,13 @@ public class BsqFormatter implements CoinFormatter {
|
||||
|
||||
@Inject
|
||||
public BsqFormatter() {
|
||||
this.monetaryFormat = BisqEnvironment.getParameters().getMonetaryFormat();
|
||||
this.immutableCoinFormatter = new ImmutableCoinFormatter(BisqEnvironment.getParameters().getMonetaryFormat());
|
||||
this.btcCoinFormat = BisqEnvironment.getParameters().getMonetaryFormat();
|
||||
this.monetaryFormat = new MonetaryFormat().shift(6).code(6, "BSQ").minDecimals(2);
|
||||
this.immutableCoinFormatter = new ImmutableCoinFormatter(monetaryFormat);
|
||||
|
||||
GlobalSettings.localeProperty().addListener((observable, oldValue, newValue) -> switchLocale(newValue));
|
||||
switchLocale(GlobalSettings.getLocale());
|
||||
|
||||
btcCoinFormat = monetaryFormat;
|
||||
|
||||
final String baseCurrencyCode = BisqEnvironment.getBaseCurrencyNetwork().getCurrencyCode();
|
||||
switch (baseCurrencyCode) {
|
||||
case "BTC":
|
||||
monetaryFormat = new MonetaryFormat().shift(6).code(6, "BSQ").minDecimals(2);
|
||||
break;
|
||||
default:
|
||||
throw new RuntimeException("baseCurrencyCode not defined. baseCurrencyCode=" + baseCurrencyCode);
|
||||
}
|
||||
|
||||
amountFormat.setMinimumFractionDigits(2);
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user