Change Anti.cash to Anti, add comment

This commit is contained in:
Manfred Karrer 2016-04-28 17:18:00 +02:00
parent f0d97769c1
commit 14878a7cf0

View file

@ -68,22 +68,8 @@ public class CurrencyUtil {
return allSortedCryptoCurrencies; return allSortedCryptoCurrencies;
} }
public static List<CryptoCurrency> getMainCryptoCurrencies() { // Don't make a PR for adding a coin but follow the steps described here:
final List<CryptoCurrency> result = new ArrayList<>(); // https://forum.bitsquare.io/t/how-to-add-your-favorite-altcoin/
result.add(new CryptoCurrency("ETH", "Ethereum"));
result.add(new CryptoCurrency("LTC", "Litecoin"));
result.add(new CryptoCurrency("DASH", "Dash"));
result.add(new CryptoCurrency("SDC", "ShadowCash"));
result.add(new CryptoCurrency("NMC", "Namecoin"));
result.add(new CryptoCurrency("NBT", "NuBits"));
result.add(new CryptoCurrency("SC", "Siacoin"));
result.add(new CryptoCurrency("FAIR", "FairCoin"));
result.add(new CryptoCurrency("DOGE", "Dogecoin"));
result.add(new CryptoCurrency("NXT", "Nxt"));
result.add(new CryptoCurrency("BTS", "BitShares"));
return result;
}
public static List<CryptoCurrency> createAllSortedCryptoCurrenciesList() { public static List<CryptoCurrency> createAllSortedCryptoCurrenciesList() {
final List<CryptoCurrency> result = new ArrayList<>(); final List<CryptoCurrency> result = new ArrayList<>();
result.add(new CryptoCurrency("ETH", "Ethereum")); result.add(new CryptoCurrency("ETH", "Ethereum"));
@ -107,7 +93,7 @@ public class CurrencyUtil {
result.add(new CryptoCurrency("XCP", "Counterparty")); result.add(new CryptoCurrency("XCP", "Counterparty"));
result.add(new CryptoCurrency("XRP", "Ripple")); result.add(new CryptoCurrency("XRP", "Ripple"));
result.add(new CryptoCurrency("XEM", "NEM")); result.add(new CryptoCurrency("XEM", "NEM"));
result.add(new CryptoCurrency("ANTI", "Anti.cash")); result.add(new CryptoCurrency("ANTI", "Anti"));
result.add(new CryptoCurrency("VPN", "VPNCoin")); result.add(new CryptoCurrency("VPN", "VPNCoin"));
result.add(new CryptoCurrency("MAID", "MaidSafeCoin")); result.add(new CryptoCurrency("MAID", "MaidSafeCoin"));
result.add(new CryptoCurrency("YBC", "YbCoin")); result.add(new CryptoCurrency("YBC", "YbCoin"));
@ -123,6 +109,22 @@ public class CurrencyUtil {
return result; return result;
} }
public static List<CryptoCurrency> getMainCryptoCurrencies() {
final List<CryptoCurrency> result = new ArrayList<>();
result.add(new CryptoCurrency("ETH", "Ethereum"));
result.add(new CryptoCurrency("LTC", "Litecoin"));
result.add(new CryptoCurrency("DASH", "Dash"));
result.add(new CryptoCurrency("SDC", "ShadowCash"));
result.add(new CryptoCurrency("NMC", "Namecoin"));
result.add(new CryptoCurrency("NBT", "NuBits"));
result.add(new CryptoCurrency("SC", "Siacoin"));
result.add(new CryptoCurrency("FAIR", "FairCoin"));
result.add(new CryptoCurrency("DOGE", "Dogecoin"));
result.add(new CryptoCurrency("NXT", "Nxt"));
result.add(new CryptoCurrency("BTS", "BitShares"));
return result;
}
/** /**
* @return Sorted list of SEPA currencies with EUR as first item * @return Sorted list of SEPA currencies with EUR as first item