Skip to content

Commit

Permalink
clippy
Browse files Browse the repository at this point in the history
  • Loading branch information
rauljordan committed Dec 11, 2024
1 parent a318690 commit cee8759
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion main/src/project.rs
Original file line number Diff line number Diff line change
Expand Up @@ -353,7 +353,7 @@ pub fn compress_wasm(wasm: &PathBuf, project_hash: [u8; 32]) -> Result<(Vec<u8>,

let wat_str =
wasmprinter::print_bytes(&wasm).map_err(|e| eyre!("failed to convert Wasm to Wat: {e}"))?;
let wasm = wasmer::wat2wasm(&wat_str.as_bytes())
let wasm = wasmer::wat2wasm(wat_str.as_bytes())
.map_err(|e| eyre!("failed to convert Wat to Wasm: {e}"))?;

let wasm = add_project_hash_to_wasm_file(&wasm, project_hash)
Expand Down

0 comments on commit cee8759

Please sign in to comment.