Fixed round value of latest transaction list (home)

This commit is contained in:
Gustavo Cortez 2014-05-27 10:33:19 -03:00
parent a7cadf0371
commit f6157e6d32
1 changed files with 1 additions and 1 deletions

View File

@ -35,7 +35,7 @@ module.exports.broadcastTx = function(tx) {
valueOut += o.valueSat;
});
t.valueOut = (valueOut/util.COIN).toFixed(0);
t.valueOut = (valueOut.toFixed(8)/util.COIN);
}
ios.sockets.in('inv').emit('tx', t);
}