Ninjastic
Home
Search
Users
Boards
Addresses
Ctrl + K
Toggle theme
Open menu
Post
Edited versions
Quotes to this post
Post
17521256
Topic
705509
Board
Pools (Altcoins)
Re: [ANN][POOLS] CryptoNote Universal Pool Solution
by
MainCoins
on
16/01/2017, 12:21:16 UTC
Quote from: cryptomaxsun on January 16, 2017, 12:12:11 PM
Quote from: MainCoins on January 16, 2017, 11:56:57 AM
Quote from: cryptomaxsun on January 15, 2017, 07:48:19 AM
Admin Center missing statistics on miners.
How to fix?
try to change return in getReadableHashRateString function in admin.html:
Code:
return parseInt(hashrate).toFixed(2) + byteUnits;
Where to enter it?
find getReadableHashRateString function in admin.html file and replace
Code:
return hashrate.toFixed(2) + byteUnits[i];
with
Code:
return parseInt(hashrate).toFixed(2) + byteUnits;
https://github.com/forknote/forknote-pool/blob/master/website/admin.html
line 130