Skip to content

Commit

Permalink
solving unresolved import
Browse files Browse the repository at this point in the history
  • Loading branch information
Blindspot22 committed Nov 1, 2024
1 parent f5a599e commit 86af767
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions crates/web-plugins/didcomm-messaging/src/util/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,7 @@ use did_utils::{
didcore::{AssertionMethod, Document, KeyAgreement, KeyFormat, VerificationMethod},
jwk::Jwk,
};
use keystore::{filesystem::FileSystem, KeyStore};
use keystore::errors::KeystoreError;
use keystore::{filesystem::FileSystem, KeyStore, KeyStoreError};
use serde_json::Error as SerdeError;
use std::io;

Expand Down Expand Up @@ -44,7 +43,7 @@ pub fn read_diddoc(fs: &dyn FileSystem, storage_dirpath: &str) -> Result<Documen
pub fn read_keystore<'a>(
fs: &'a mut dyn FileSystem,
storage_dirpath: &str,
) -> Result<KeyStore<'a>, KeystoreError> {
) -> Result<KeyStore<'a>, KeyStoreError> {
KeyStore::latest(fs, storage_dirpath)
}

Expand Down

0 comments on commit 86af767

Please sign in to comment.