From a2a0ae49cc60b2591a6a48830658549898fcbe40 Mon Sep 17 00:00:00 2001 From: zer0 Date: Mon, 9 Sep 2024 17:26:18 +0200 Subject: [PATCH] wallet-core: adjustment after rebasing with main branch --- wallet-core/src/input.rs | 3 +-- wallet-core/src/lib.rs | 8 -------- 2 files changed, 1 insertion(+), 10 deletions(-) diff --git a/wallet-core/src/input.rs b/wallet-core/src/input.rs index 00fb51ed13..d9355a13b9 100644 --- a/wallet-core/src/input.rs +++ b/wallet-core/src/input.rs @@ -8,8 +8,7 @@ use alloc::vec::Vec; -use super::{alloc, Note}; - +use execution_core::transfer::phoenix::Note; use execution_core::BlsScalar; /// The maximum amount of input notes that can be spend in one diff --git a/wallet-core/src/lib.rs b/wallet-core/src/lib.rs index bb939d060a..0b6e80bac7 100644 --- a/wallet-core/src/lib.rs +++ b/wallet-core/src/lib.rs @@ -36,12 +36,4 @@ pub mod prelude { pub use crate::keys; } -use alloc::vec::Vec; - -use dusk_bytes::{DeserializableSlice, Serializable, Write}; - -use execution_core::transfer::phoenix::{Note, ViewKey as PhoenixViewKey}; - -pub use notes::map_owned; - pub use notes::{map_owned, phoenix_balance, BalanceInfo};