Skip to content

Commit

Permalink
change compile to pub (#205)
Browse files Browse the repository at this point in the history
  • Loading branch information
yymone authored Nov 1, 2023
1 parent 7cb0318 commit f27dac8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/zkwasm/src/loader/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ impl<E: MultiMillerLoop> ZkWasmLoader<E> {
Ok(())
}

fn compile(&self, env: &HostEnv) -> Result<CompiledImage<NotStartedModuleRef<'_>, Tracer>> {
pub fn compile(&self, env: &HostEnv) -> Result<CompiledImage<NotStartedModuleRef<'_>, Tracer>> {
let imports = ImportsBuilder::new().with_resolver("env", env);

WasmInterpreter::compile(
Expand Down

0 comments on commit f27dac8

Please sign in to comment.