Update CurrencyUtil.java

add BURST+STEEM to the list of removed assets
This commit is contained in:
Harry MacFinned 2019-04-09 07:27:39 +00:00 committed by GitHub
parent ee7864bc34
commit 5aa22cef93
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -154,6 +154,8 @@ public class CurrencyUtil {
currencies.add(new CryptoCurrency("GRC", "Gridcoin"));
currencies.add(new CryptoCurrency("LTZ", "LitecoinZ"));
currencies.add(new CryptoCurrency("ZOC", "01coin"));
currencies.add(new CryptoCurrency("BURST", "Burstcoin"));
currencies.add(new CryptoCurrency("STEEM", "Steem"));
return currencies;
}