Update home.html

Fixed block reward in the mining profit calculator to represent currently XDN block reward.
pull/9/head
Dallas Gray 2014-08-16 14:36:18 -06:00
parent f8cb87e446
commit ffbb8c0ca7
1 changed files with 1 additions and 1 deletions

View File

@ -465,7 +465,7 @@
try {
var rateUnit = Math.pow(1024,parseInt($('#calcHashUnit').data('mul')));
var inp2 = parseFloat($('#calcHashRate').val()) * rateUnit;
var resl = 16 / ((lastStats.network.difficulty / inp2) / 86400);
var resl = 80000 / ((lastStats.network.difficulty / inp2) / 86400);
if (!isNaN(resl)) {
updateText('calcHashAmount', (Math.round(resl * 100) / 100).toString());
return;