Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
anshalshukla committed Jan 28, 2024
1 parent 08d7a02 commit 660c146
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/da/celestia.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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
}
Expand Down

0 comments on commit 660c146

Please sign in to comment.