mirror of
https://github.com/feather-wallet/feather.git
synced 2024-11-16 17:27:38 +00:00
Prices: add support for AUD
This commit is contained in:
parent
f029820a37
commit
db689870f1
3 changed files with 11 additions and 0 deletions
|
@ -136,6 +136,11 @@
|
||||||
<string>RMB</string>
|
<string>RMB</string>
|
||||||
</property>
|
</property>
|
||||||
</item>
|
</item>
|
||||||
|
<item>
|
||||||
|
<property name="text">
|
||||||
|
<string>AUD</string>
|
||||||
|
</property>
|
||||||
|
</item>
|
||||||
</widget>
|
</widget>
|
||||||
</item>
|
</item>
|
||||||
</layout>
|
</layout>
|
||||||
|
|
|
@ -53,6 +53,11 @@
|
||||||
<string>GBP</string>
|
<string>GBP</string>
|
||||||
</property>
|
</property>
|
||||||
</item>
|
</item>
|
||||||
|
<item>
|
||||||
|
<property name="text">
|
||||||
|
<string>AUD</string>
|
||||||
|
</property>
|
||||||
|
</item>
|
||||||
<item>
|
<item>
|
||||||
<property name="text">
|
<property name="text">
|
||||||
<string>CAD</string>
|
<string>CAD</string>
|
||||||
|
|
|
@ -27,6 +27,7 @@ Prices::Prices(QObject *parent) : QObject(parent) {
|
||||||
fiat["CHF"] = "Fr";
|
fiat["CHF"] = "Fr";
|
||||||
fiat["CNY"] = "¥";
|
fiat["CNY"] = "¥";
|
||||||
fiat["CZK"] = "Kč";
|
fiat["CZK"] = "Kč";
|
||||||
|
fiat["AUD"] = "$";
|
||||||
}
|
}
|
||||||
|
|
||||||
void Prices::cryptoPricesReceived(const QJsonArray &data) {
|
void Prices::cryptoPricesReceived(const QJsonArray &data) {
|
||||||
|
|
Loading…
Reference in a new issue