From 33329632b538a51b535a2ef5f8f40d75ecb67db9 Mon Sep 17 00:00:00 2001 From: James Wilson Date: Tue, 29 Jul 2025 11:34:31 +0100 Subject: [PATCH] Increase geth instantiate timeout from 2s to 5s (#86) --- 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.