Fix denom base

This commit is contained in:
Nick Savers 2014-05-22 10:49:10 +02:00
parent dd45965240
commit c34714cbe8
1 changed files with 1 additions and 1 deletions

View File

@ -23,6 +23,6 @@ public enum Denomination {
}
private static BigInteger newBigInt(int value) {
return BigInteger.valueOf(2).pow(value);
return BigInteger.valueOf(10).pow(value);
}
}