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 1b0383e commit b4f51fbCopy full SHA for b4f51fb
libindy/src/services/wallet/mod.rs
@@ -269,7 +269,7 @@ impl WalletService {
269
if !wallet_descriptor_path.exists() {
270
return Err(WalletError::NotFound("Wallet descriptor path does not exist.".to_string()));
271
}
272
- let mut file = File::open(_wallet_descriptor_path(name))?;
+ let mut file = File::open(wallet_descriptor_path)?;
273
file.read_to_string(&mut descriptor_json)?;
274
descriptor_json.as_str()
275
})?;
0 commit comments