adding proper shares per second
This commit is contained in:
parent
72156c543d
commit
16f9cc4390
@ -159,6 +159,7 @@ class Statistics {
|
|||||||
public function getTopContributors($limit=15) {
|
public function getTopContributors($limit=15) {
|
||||||
$stmt = $this->mysqli->prepare("
|
$stmt = $this->mysqli->prepare("
|
||||||
SELECT
|
SELECT
|
||||||
|
ROUND(COUNT(id) / 60 / 10, 2) AS sharesps,
|
||||||
ROUND(COUNT(id) * POW(2," . $this->config['difficulty'] . ")/600/1000,2) AS hashrate,
|
ROUND(COUNT(id) * POW(2," . $this->config['difficulty'] . ")/600/1000,2) AS hashrate,
|
||||||
SUBSTRING_INDEX( username, '.', 1 ) AS account
|
SUBSTRING_INDEX( username, '.', 1 ) AS account
|
||||||
FROM " . $this->share->getTableName() . "
|
FROM " . $this->share->getTableName() . "
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user