fix: worker total hash rate (issue #1)

This commit is contained in:
djerfy 2023-08-01 21:14:25 +02:00
parent a6af5ff82e
commit f907d99d8d
No known key found for this signature in database
GPG Key ID: 1B18B89ED4A4A975

View File

@ -136,7 +136,7 @@ export class DashboardComponent {
public getTotalHashRate(name: string, workers: any[]) {
const workersByName = workers.filter(w => w.name == name);
const sum = workersByName.reduce((pre, cur, idx, arr) => {
return pre += cur.hashRate;
return pre += Math.floor(cur.hashRate);
}, 0);
return Math.floor(sum);
}