update checker

This commit is contained in:
vvzvlad 2024-12-12 03:04:07 +03:00
parent f580f41130
commit 3f4b1b51c0

View File

@ -127,7 +127,7 @@ def check_logs(log_handler):
data = { data = {
"errors": error_count, "errors": error_count,
"proved_steps": proved_count/10, "proved_steps": proved_count/10,
"proof_speed": avg_proof_speed "proof_speed": int(avg_proof_speed)
} }
log_handler.info(f"Result: {data}") log_handler.info(f"Result: {data}")
return data return data