From 660c1466b007929e4e15fc79fa2ec6b0183c62cf Mon Sep 17 00:00:00 2001 From: Anshal Shukla Date: Mon, 29 Jan 2024 01:43:22 +0530 Subject: [PATCH] fix --- src/da/celestia.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/da/celestia.rs b/src/da/celestia.rs index 8eeadb5..6227ec5 100644 --- a/src/da/celestia.rs +++ b/src/da/celestia.rs @@ -60,7 +60,7 @@ impl DaClient for CelestiaClient { exec_cmd_in_celestia_container(run_cmd).await?; // Waits for docker container to execute the commands and generate the keys loop { - let container_exists = is_container_running(&CELESTIA_CONTAINER_NAME).await; + let container_exists = is_container_running(CELESTIA_CONTAINER_NAME).await; if !container_exists { break; // Container has exited }