From 15db0465d500aabf14a557e61e54918cbeaa13a0 Mon Sep 17 00:00:00 2001 From: Ben Date: Sun, 3 Mar 2024 19:35:54 -0500 Subject: [PATCH] added supra hashrate estimate --- .../axe-os/src/app/components/home/home.component.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/main/http_server/axe-os/src/app/components/home/home.component.ts b/main/http_server/axe-os/src/app/components/home/home.component.ts index 8ad062ae..bd9debd7 100644 --- a/main/http_server/axe-os/src/app/components/home/home.component.ts +++ b/main/http_server/axe-os/src/app/components/home/home.component.ts @@ -141,6 +141,8 @@ export class HomeComponent { } } else if (info.ASICModel === eASICModel.BM1397) { return (info.frequency * (672 / 1000)) + } else if (info.ASICModel === eASICModel.BM1368) { + return (info.frequency * (1276 / 1000)) } return undefined;