Skip to content

Commit

Permalink
fixup! fix relative paths
Browse files Browse the repository at this point in the history
  • Loading branch information
tzemanovic committed Jan 12, 2024
1 parent a7bb366 commit 03d38a9
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion crates/apps/src/lib/bench_utils.rs
Original file line number Diff line number Diff line change
Expand Up @@ -552,7 +552,8 @@ impl BenchShell {
}

pub fn generate_foreign_key_tx(signer: &SecretKey) -> Tx {
let wasm_code = std::fs::read("../wasm_for_tests/tx_write.wasm").unwrap();
let wasm_code =
std::fs::read("../../wasm_for_tests/tx_write.wasm").unwrap();

let mut tx = Tx::from_type(namada::tx::data::TxType::Decrypted(
namada::tx::data::DecryptedTx::Decrypted,
Expand Down

0 comments on commit 03d38a9

Please sign in to comment.