From f907d99d8d0ef22c406c329f02b767ffd52be8dd Mon Sep 17 00:00:00 2001 From: djerfy Date: Tue, 1 Aug 2023 21:14:25 +0200 Subject: [PATCH] fix: worker total hash rate (issue #1) --- src/app/components/dashboard/dashboard.component.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/components/dashboard/dashboard.component.ts b/src/app/components/dashboard/dashboard.component.ts index a324592..e31c70e 100644 --- a/src/app/components/dashboard/dashboard.component.ts +++ b/src/app/components/dashboard/dashboard.component.ts @@ -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); }