diff --git a/rust/apps/ton/src/structs.rs b/rust/apps/ton/src/structs.rs index 3bec7c915..fb0086550 100644 --- a/rust/apps/ton/src/structs.rs +++ b/rust/apps/ton/src/structs.rs @@ -8,7 +8,7 @@ use crate::utils::shorten_string; use crate::vendor::address::TonAddress; use crate::vendor::cell::BagOfCells; use alloc::string::{String, ToString}; -use alloc::vec; + use hex; use serde::Serialize; use serde_json::{self, json, Value}; diff --git a/rust/apps/wallets/src/zcash.rs b/rust/apps/wallets/src/zcash.rs index 82b53f229..a2eba6bc5 100644 --- a/rust/apps/wallets/src/zcash.rs +++ b/rust/apps/wallets/src/zcash.rs @@ -1,12 +1,10 @@ -use alloc::string::{String, ToString}; -use alloc::vec; +use alloc::string::{String}; + use alloc::vec::Vec; use app_utils::impl_public_struct; use ur_registry::{ - crypto_hd_key::CryptoHDKey, - crypto_key_path::CryptoKeyPath, - error::{URError, URResult}, + error::{URResult}, zcash::{ zcash_accounts::ZcashAccounts, zcash_unified_full_viewing_key::ZcashUnifiedFullViewingKey, },