We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 23bcacf commit f0fc939Copy full SHA for f0fc939
wasm/src/programs/execution.rs
@@ -112,7 +112,7 @@ pub fn verify_function_execution(
112
let function = IdentifierNative::from_str(function_id).map_err(|e| e.to_string())?;
113
let program_id = ProgramID::<CurrentNetwork>::from_str(&program.id()).unwrap();
114
let mut process_native = ProcessNative::load_web().map_err(|e| e.to_string())?;
115
- let process = &mut process_native;
+ let process = &mut process_native;
116
let program_native = ProgramNative::from_str(program.to_string().as_str()).map_err(|e| e.to_string())?;
117
ProgramManager::resolve_imports(process, &program_native, imports)?;
118
if &program.id() != "credits.aleo" {
0 commit comments