Skip to content

Commit

Permalink
fix wasm dir during join-network
Browse files Browse the repository at this point in the history
  • Loading branch information
Fraccaman authored and tzemanovic committed Aug 23, 2024
1 parent de21f53 commit 6728175
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion crates/apps_lib/src/client/utils.rs
Original file line number Diff line number Diff line change
Expand Up @@ -253,7 +253,8 @@ pub async fn join_network(
}

// Validate the wasm artifacts checksums
validate_wasm_artifacts_aux(&chain_id, &config.wasm_dir).await;
validate_wasm_artifacts_aux(&chain_id, &chain_dir.join(&config.wasm_dir))
.await;

// Save the config and the wallet
config.write(&base_dir, &chain_id, true).unwrap();
Expand Down

0 comments on commit 6728175

Please sign in to comment.