merging fork changes

This commit is contained in:
Dmitriy Ryajov 2025-03-03 13:02:35 -06:00
parent 09d8664c34
commit 944fd82fe3
No known key found for this signature in database
GPG Key ID: DA8C680CE7C657A4

View File

@ -55,11 +55,6 @@ impl WitnessCalculator {
Self::from_module(store, module)
}
pub fn from_file(store: &mut Store, path: impl AsRef<std::path::Path>) -> Result<Self> {
let module = Module::new(&store, bytes)?;
Self::from_module(store, module)
}
pub fn from_file(store: &mut Store, path: impl AsRef<std::path::Path>) -> Result<Self> {
let module = Module::from_file(&store, path)?;
Self::from_module(store, module)