Skip to content

Commit

Permalink
Cleanup imports in wallet key module for improved readability
Browse files Browse the repository at this point in the history
  • Loading branch information
jamesatomc committed Jan 29, 2025
1 parent af4b341 commit 04b76cc
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions crates/core/wallet/key/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
use std::{fs, io::{self, Write}, path::PathBuf, str::FromStr, };
use std::{fs, io, str::FromStr };
use serde::{Deserialize, Serialize};
use bip39::{Mnemonic, Language};
use log::{debug, error};
use log::error;
use move_core_types::{
account_address::AccountAddress,
// identifier::Identifier,
Expand All @@ -21,9 +21,9 @@ use aes_gcm::{
};
use argon2::{
password_hash::{PasswordHasher, SaltString},
Argon2, PasswordHash,
Argon2,
};
use base64::{Engine as _, engine::general_purpose::STANDARD as BASE64};



#[derive(Error, Debug)]
Expand Down

0 comments on commit 04b76cc

Please sign in to comment.