Add DAO to main altcoins

This commit is contained in:
Manfred Karrer 2016-05-22 03:21:49 +02:00
parent c0f2bf656b
commit f51b80fa47

View File

@ -123,7 +123,6 @@ public class CurrencyUtil {
// For MKR we need a extra info box:
// It's very important that users only use EIP-20 compliant contract wallets.
// Modern mist wallets should be able to do it but there are some older mist versions that can't.
//result.add(new CryptoCurrency("MKR", "Maker"));
// result.add(new CryptoCurrency("XMR", "Monero"));
// result.add(new CryptoCurrency("BCN", "Bytecoin"));
@ -133,6 +132,7 @@ public class CurrencyUtil {
public static List<CryptoCurrency> getMainCryptoCurrencies() {
final List<CryptoCurrency> result = new ArrayList<>();
result.add(new CryptoCurrency("ETH", "Ether"));
result.add(new CryptoCurrency("DAO", "DAO"));
result.add(new CryptoCurrency("LTC", "Litecoin"));
result.add(new CryptoCurrency("DASH", "Dash"));
result.add(new CryptoCurrency("SDC", "ShadowCash"));