Skip to content

Commit

Permalink
test-wallet: Move EnrichedNote to wallet-core
Browse files Browse the repository at this point in the history
  • Loading branch information
moCello committed Aug 31, 2024
1 parent 25f2e66 commit 983de8f
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions test-wallet/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,9 @@ use execution_core::{
BlsScalar,
};

pub use wallet_core::keys::{
derive_bls_sk, derive_phoenix_pk, derive_phoenix_sk,
pub use wallet_core::{
keys::{derive_bls_sk, derive_phoenix_pk, derive_phoenix_sk},
EnrichedNote,
};

pub use imp::*;
Expand Down Expand Up @@ -104,9 +105,6 @@ pub trait Store {
}
}

/// Tuple containing Note and block height
pub type EnrichedNote = (Note, u64);

/// Types that are clients of the state API.
pub trait StateClient {
/// Error returned by the node client.
Expand Down

0 comments on commit 983de8f

Please sign in to comment.