Skip to content

Commit

Permalink
cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
andrei-marinica committed Sep 27, 2023
1 parent df1979f commit 7aa341e
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,6 @@ impl OutputContract {
print_extract_imports(&output_imports_json_path);
let import_names = tools::extract_wasm_imports(&output_wasm_path)
.expect("error occured while extracting imports from .wasm ");
println!("{import_names:?}");
write_imports_output(output_imports_json_path.as_str(), import_names.as_slice());
validate_ei(&import_names, &self.settings.check_ei);
}
Expand Down
2 changes: 1 addition & 1 deletion framework/meta/src/print_util.rs
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ pub fn print_call_wasm_opt(wasm_path: &str) {
pub fn print_call_wasm2wat(wasm_path: &str, wat_path: &str) {
println!(
"{}",
format!("Calling wasm2wat on {wasm_path} -> {wat_path} ...").green(),
format!("Extracting wat from {wasm_path} to {wat_path} ...").green(),
);
}

Expand Down

0 comments on commit 7aa341e

Please sign in to comment.