From 6c4bf10bcb7748ebc687552e9a88971d0a3220ad Mon Sep 17 00:00:00 2001 From: Tristan Smith Date: Sat, 25 May 2024 14:17:22 -0400 Subject: [PATCH] Outputs, asic checks --- finder.py | 1 + 1 file changed, 1 insertion(+) diff --git a/finder.py b/finder.py index c953630..4260020 100644 --- a/finder.py +++ b/finder.py @@ -117,6 +117,7 @@ def main(): results.append([worker_id, ip, log[0], log[1]]) # Check for ASIC chip errors and add to results + # Maybe think about this differntly. Look for "will power off hashboard" and *then* figure out why the hashboard has been powered off. for chain, counts in asic_errors.items(): if counts.count(0) >= 3: results.append([worker_id, ip, "ASIC Error", f"Chain {chain} has {counts.count(0)} failed checks with 0 ASICs found"])