Skip to content

Commit 306d3a8

Browse files
committed
fix: fix build after rebase
1 parent 46ea9e3 commit 306d3a8

File tree

2 files changed

+2
-6
lines changed

2 files changed

+2
-6
lines changed

hir/src/component/mod.rs

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -48,11 +48,8 @@ impl fmt::Display for ComponentImport {
4848
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
4949
write!(
5050
f,
51-
"{} {} {} mast#0x{}",
52-
self.invoke_method,
53-
self.interface_function,
54-
self.function_ty,
55-
self.function_mast_root_hash
51+
"{} {} {} mast#{}",
52+
self.invoke_method, self.interface_function, self.function_ty, self.digest
5653
)
5754
}
5855
}

tests/integration/src/rust_masm_tests/components.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
use crate::CompilerTest;
22
use expect_test::expect_file;
33
use miden_core::crypto::hash::RpoDigest;
4-
use miden_frontend_wasm::translate_component;
54
use miden_frontend_wasm::ExportMetadata;
65
use miden_frontend_wasm::ImportMetadata;
76
use miden_frontend_wasm::WasmTranslationConfig;

0 commit comments

Comments
 (0)