From 944fd82fe3a14c5a60c65a4677ba8ded09f78de8 Mon Sep 17 00:00:00 2001 From: Dmitriy Ryajov Date: Mon, 3 Mar 2025 13:02:35 -0600 Subject: [PATCH] merging fork changes --- src/witness/witness_calculator.rs | 5 ----- 1 file changed, 5 deletions(-) diff --git a/src/witness/witness_calculator.rs b/src/witness/witness_calculator.rs index f058031..c9e1888 100644 --- a/src/witness/witness_calculator.rs +++ b/src/witness/witness_calculator.rs @@ -55,11 +55,6 @@ impl WitnessCalculator { Self::from_module(store, module) } - pub fn from_file(store: &mut Store, path: impl AsRef) -> Result { - let module = Module::new(&store, bytes)?; - Self::from_module(store, module) - } - pub fn from_file(store: &mut Store, path: impl AsRef) -> Result { let module = Module::from_file(&store, path)?; Self::from_module(store, module)