Updated on 2026-08-14

This commit is contained in:
Tangem 2018-11-01 11:23:59 +03:00
parent 240b513303
commit 47d731ffe2
9 changed files with 87 additions and 46 deletions

View file

@ -31,12 +31,12 @@ public class EthData extends CoinData {
public void setUnconfirmedTXCount(BigInteger count) {
countUnconfirmedTX = count;
}
public String getAmountInGwei(String amount) {
BigInteger d = new BigInteger(amount, 10);
BigInteger m = d.divide(BigInteger.valueOf(1000000000L));
return m.toString(10);
}
//
// public String getAmountInGwei(String amount) {
// BigInteger d = new BigInteger(amount, 10);
// BigInteger m = d.divide(BigInteger.valueOf(1000000000L));
// return m.toString(10);
// }
@Override
public void clearInfo() {