Adjusting Bitshares precision value

At least this one I know is not 8, but 5. Check it out here: https://cryptofresh.com/a/BTS.

You might want to double check the precision value for all the others. Although since they are all forks of the bitcoin codebase in the end they might really be 8.
master
Nelson Perez 2017-09-29 10:29:01 -05:00 committed by GitHub
parent 701aeb8b38
commit 7d77348a50
1 changed files with 1 additions and 1 deletions

View File

@ -12,7 +12,7 @@ public enum CryptoCoin implements Serializable {
LITECOIN(CryptoNet.LITECOIN,"LTC",8),
DASH(CryptoNet.DASH,"DASH",8),
DOGECOIN(CryptoNet.DOGECOIN,"DOGE",8),
BITSHARES(CryptoNet.BITSHARES,"BTS",8);
BITSHARES(CryptoNet.BITSHARES,"BTS",5);
protected CryptoNet cryptoNet;
protected String label;