From aa73b93f3882d2a736438d732f4ddfa9fb7a830c Mon Sep 17 00:00:00 2001 From: Mattie Conover Date: Tue, 19 Jul 2022 16:18:04 -0400 Subject: [PATCH] make timeout longer for contract deploy (#802) --- rust/utils/run-locally/src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rust/utils/run-locally/src/main.rs b/rust/utils/run-locally/src/main.rs index d0e70b9a6..396459f7c 100644 --- a/rust/utils/run-locally/src/main.rs +++ b/rust/utils/run-locally/src/main.rs @@ -230,7 +230,7 @@ fn main() -> ExitCode { // } state.node = Some(node); - sleep(Duration::from_secs(5)); + sleep(Duration::from_secs(10)); println!("Deploying abacus contracts..."); let status = Command::new("yarn")