Download as txt, pdf, or txt
Download as txt, pdf, or txt
You are on page 1of 1

function sato(){

var amount = 50000000 /


86400 * 5;
$({

Counter:parseFloat($('#mining_run').text())
}).animate({
Counter:
(parseFloat($('#mining_run').text()) + amount).toFixed(3)
}, {
duration: 5000,
easing: 'swing',
step: function () {
$
('#mining_run').text((this.Counter).toFixed(3)+' Satoshi');
}
});
}
setInterval(function(){
sato();
}, 450000000);

You might also like