From 82a7f30e652928b48cdab126eb50ddc613656597 Mon Sep 17 00:00:00 2001 From: cairo <101215230+cairoeth@users.noreply.github.com> Date: Fri, 15 Mar 2024 12:50:56 -0500 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=A7=20lower=20timeout=20to=2012min?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- paradigmctf.py/ctf_launchers/launcher.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/paradigmctf.py/ctf_launchers/launcher.py b/paradigmctf.py/ctf_launchers/launcher.py index 7fa104f..3e09d17 100644 --- a/paradigmctf.py/ctf_launchers/launcher.py +++ b/paradigmctf.py/ctf_launchers/launcher.py @@ -24,7 +24,7 @@ PUBLIC_HOST = os.getenv("PUBLIC_HOST", "http://127.0.0.1:8545") ETH_RPC_URL = os.getenv("ETH_RPC_URL") -TIMEOUT = int(os.getenv("TIMEOUT", "1440")) +TIMEOUT = int(os.getenv("TIMEOUT", "720")) @dataclass