Skip to content

Commit

Permalink
fix xag and xau names inverted
Browse files Browse the repository at this point in the history
  • Loading branch information
woodser committed Oct 29, 2023
1 parent 1cbf14f commit 4f5f82b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions core/src/main/java/haveno/core/locale/CurrencyUtil.java
Original file line number Diff line number Diff line change
Expand Up @@ -58,8 +58,8 @@ public static void setup() {

private static List<TraditionalCurrency> getTraditionalNonFiatCurrencies() {
return Arrays.asList(
new TraditionalCurrency("XAG", "Gold"),
new TraditionalCurrency("XAU", "Silver"),
new TraditionalCurrency("XAG", "Silver"),
new TraditionalCurrency("XAU", "Gold"),
new TraditionalCurrency("XGB", "Goldback")
);
}
Expand Down

0 comments on commit 4f5f82b

Please sign in to comment.