Using round instead. Should be slightly more accurate.

master
Alexander Blair 7 years ago
parent e06673b794
commit 27744c34da

@ -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) {

Loading…
Cancel
Save