From 6fe91a489a5efbad34796488002bbd59a1a78714 Mon Sep 17 00:00:00 2001 From: Marco van Dijk Date: Thu, 12 Oct 2023 22:49:43 +0200 Subject: [PATCH] Reduce default check time to once an hour during inactive rounds --- RewardCall.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/RewardCall.py b/RewardCall.py index a37ddaf..930891a 100755 --- a/RewardCall.py +++ b/RewardCall.py @@ -11,7 +11,7 @@ ORCH_TARGETS = ['http://127.0.0.1:7935'] # Global Constants sleepTimeActive = 60 # Wait time when there is any O which has to call reward this round -sleepTimeIdle = 60 * 60 * 4 # Wait time between round checks +sleepTimeIdle = 60 * 60 * 1 # Wait time between round checks # Logs `info` to the terminal with an attached datetime def log(info):