diff --git a/src/store/injected_store.rs b/src/store/injected_store.rs index fdfb642..3e0d469 100644 --- a/src/store/injected_store.rs +++ b/src/store/injected_store.rs @@ -1,8 +1,8 @@ // Copyright 2024 ChainSafe Systems // SPDX-License-Identifier: Apache-2.0, MIT -use crate::store::WalletStore; use crate::error::Error; +use crate::store::WalletStore; use wasm_bindgen::prelude::*; #[wasm_bindgen(typescript_custom_section)] diff --git a/src/store/memory_store.rs b/src/store/memory_store.rs index 42ce153..89c87b5 100644 --- a/src/store/memory_store.rs +++ b/src/store/memory_store.rs @@ -1,8 +1,8 @@ // Copyright 2024 ChainSafe Systems // SPDX-License-Identifier: Apache-2.0, MIT -use crate::store::WalletStore; use crate::error::Error; +use crate::store::WalletStore; /// A simple in-memory store for wallet data. Useful for testing pub struct MemoryStore {