Skip to content

Commit

Permalink
cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
Alex Coats committed Dec 6, 2023
1 parent 7c5f8eb commit 4b75dd8
Show file tree
Hide file tree
Showing 6 changed files with 4 additions and 7 deletions.
1 change: 0 additions & 1 deletion bindings/core/src/method/wallet.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@
#[cfg(feature = "stronghold")]
use std::path::PathBuf;

use crypto::keys::bip44::Bip44;
use derivative::Derivative;
#[cfg(feature = "events")]
use iota_sdk::wallet::events::types::{WalletEvent, WalletEventType};
Expand Down
2 changes: 1 addition & 1 deletion sdk/examples/client/node_api_core/05_post_block_raw.rs
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ use crypto::keys::bip44::Bip44;
use iota_sdk::{
client::{
constants::IOTA_COIN_TYPE,
secret::{mnemonic::MnemonicSecretManager, BlockSignExt, SecretManager},
secret::{mnemonic::MnemonicSecretManager, BlockSignExt},
Client, Result,
},
types::block::output::AccountId,
Expand Down
2 changes: 1 addition & 1 deletion sdk/examples/how_tos/account/implicit_account_creation.rs
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
use iota_sdk::{
client::{
constants::SHIMMER_COIN_TYPE,
secret::{mnemonic::MnemonicSecretManager, PublicKeyOptions, SecretManager},
secret::{mnemonic::MnemonicSecretManager, PublicKeyOptions},
},
crypto::keys::bip44::Bip44,
wallet::{ClientOptions, Result, Wallet},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
use iota_sdk::{
client::{
constants::SHIMMER_COIN_TYPE,
secret::{stronghold::StrongholdSecretManager, PublicKeyOptions, SecretManager},
secret::{stronghold::StrongholdSecretManager, PublicKeyOptions},
},
crypto::keys::{bip39::Mnemonic, bip44::Bip44},
wallet::{ClientOptions, Result, Wallet},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ use iota_sdk::{
client::{
constants::SHIMMER_COIN_TYPE,
hex_public_key_to_bech32_address,
secret::{stronghold::StrongholdSecretManager, SecretManage, SecretManageExt, SecretManager},
secret::{stronghold::StrongholdSecretManager, SecretManageExt},
},
crypto::keys::bip39::Mnemonic,
types::block::signature::Ed25519Signature,
Expand Down
2 changes: 0 additions & 2 deletions sdk/tests/client/addresses.rs
Original file line number Diff line number Diff line change
Expand Up @@ -239,8 +239,6 @@ async fn address_generation() {

#[tokio::test]
async fn address_search() -> Result<()> {
let client = Client::builder().finish().await.unwrap();

let secret_manager = MnemonicSecretManager::try_from_mnemonic(generate_mnemonic()?)?;

// Public
Expand Down

0 comments on commit 4b75dd8

Please sign in to comment.