Admin Center missing statistics on miners.
How to fix?
try to change return in getReadableHashRateString function in admin.html:
return parseInt(hashrate).toFixed(2) + byteUnits;
Where to enter it?
find getReadableHashRateString function in admin.html file and replace
return hashrate.toFixed(2) + byteUnits[i];
with
return parseInt(hashrate).toFixed(2) + byteUnits;
https://github.com/forknote/forknote-pool/blob/master/website/admin.html line 130
Thank you help!
Now, as shown:
118.00 H, KH, MH, GH, TH, PH/s
Not quite familiar.