From ca7af278cbda4996dca18b32db2e0d85e30f5337 Mon Sep 17 00:00:00 2001 From: James Wilson Date: Mon, 28 Jul 2025 15:04:48 +0100 Subject: [PATCH] Increase geth instantiate timeout from 2s to 5s --- crates/config/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/config/src/lib.rs b/crates/config/src/lib.rs index 7a78bc2..6b60f73 100644 --- a/crates/config/src/lib.rs +++ b/crates/config/src/lib.rs @@ -54,7 +54,7 @@ pub struct Arguments { pub geth: PathBuf, /// The maximum time in milliseconds to wait for geth to start. - #[arg(long = "geth-start-timeout", default_value = "2000")] + #[arg(long = "geth-start-timeout", default_value = "5000")] pub geth_start_timeout: u64, /// The test network chain ID.