Skip to content

Commit

Permalink
Merge pull request #3694 from anoma/fraccaman/fix-init-network
Browse files Browse the repository at this point in the history
fix wasm dir during join-network
  • Loading branch information
mergify[bot] authored Aug 23, 2024
2 parents 15ac38c + 8be31fa commit 0af6107
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
- Fix path to compiled WASMs that's validated during join-network.
([\#3694](https://github.com/anoma/namada/pull/3694))
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 0af6107

Please sign in to comment.