Using round instead. Should be slightly more accurate.

This commit is contained in:
Alexander Blair 2017-02-16 07:33:43 -08:00
parent e06673b794
commit 27744c34da

View file

@ -131,7 +131,7 @@ function coinToDecimal(amount) {
}
function decimalToCoin(amount) {
return Math.ceil(amount * global.config.coin.sigDigits);
return Math.round(amount * global.config.coin.sigDigits);
}
function bitcoinDecimalToCoin(amount) {