Skip to content

Commit

Permalink
fix: use correct defaults directory in kura_not_miss_replace_block
Browse files Browse the repository at this point in the history
Signed-off-by: Nurzhan Sakén <[email protected]>
  • Loading branch information
nxsaken committed Sep 9, 2024
1 parent 7949ac4 commit 1cd3645
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/iroha_core/src/kura.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1079,7 +1079,7 @@ mod tests {
);

let executor = {
let executor_blob = std::fs::read("../defaults/executor.wasm").unwrap();
let executor_blob = std::fs::read("../../defaults/executor.wasm").unwrap();
Executor::new(WasmSmartContract::from_compiled(executor_blob))
};
let genesis = GenesisBuilder::default().build_and_sign(
Expand Down

0 comments on commit 1cd3645

Please sign in to comment.