Skip to content

Commit

Permalink
test-wallet: Rename execution-core to dusk-core
Browse files Browse the repository at this point in the history
  • Loading branch information
moCello committed Dec 19, 2024
1 parent 87a0d0e commit 1b466b1
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 14 deletions.
2 changes: 1 addition & 1 deletion test-wallet/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ rkyv = { workspace = true }
ff = { workspace = true }
zeroize = { workspace = true, features = ["derive"] }

execution-core = { workspace = true }
dusk-core = { workspace = true }
wallet-core = { workspace = true }
rusk-prover = { workspace = true }

Expand Down
16 changes: 8 additions & 8 deletions test-wallet/src/imp.rs
Original file line number Diff line number Diff line change
Expand Up @@ -9,20 +9,20 @@ use alloc::vec::Vec;
use core::convert::Infallible;

use dusk_bytes::Error as BytesError;
use execution_core::signatures::bls::{
use dusk_core::signatures::bls::{
PublicKey as BlsPublicKey, SecretKey as BlsSecretKey,
};
use execution_core::stake::StakeData;
use execution_core::transfer::data::TransactionData;
use execution_core::transfer::moonlight::{
use dusk_core::stake::StakeData;
use dusk_core::transfer::data::TransactionData;
use dusk_core::transfer::moonlight::{
AccountData, Transaction as MoonlightTransaction,
};
use execution_core::transfer::phoenix::{
use dusk_core::transfer::phoenix::{
Note, NoteLeaf, NoteOpening, PublicKey as PhoenixPublicKey,
SecretKey as PhoenixSecretKey, ViewKey as PhoenixViewKey,
};
use execution_core::transfer::Transaction;
use execution_core::{BlsScalar, Error as ExecutionError};
use dusk_core::transfer::Transaction;
use dusk_core::{BlsScalar, Error as ExecutionError};
use rand::{CryptoRng, Error as RngError, RngCore};
use rkyv::ser::serializers::{
AllocScratchError, CompositeSerializerError, SharedSerializeMapError,
Expand Down Expand Up @@ -65,7 +65,7 @@ pub enum Error<S: Store, SC: StateClient> {
Bytes(BytesError),
/// Bytes were meant to be utf8 but aren't.
Utf8(FromUtf8Error),
/// Originating from the execution-core error.
/// Originating from the dusk-core error.
Execution(ExecutionError),
/// Note combination for the given value is impossible given the maximum
/// amount if inputs in a phoenix transaction.
Expand Down
10 changes: 5 additions & 5 deletions test-wallet/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -16,16 +16,16 @@ mod imp;

use alloc::vec::Vec;

use execution_core::signatures::bls::{
use dusk_core::signatures::bls::{
PublicKey as BlsPublicKey, SecretKey as BlsSecretKey,
};
use execution_core::stake::StakeData;
use execution_core::transfer::moonlight::AccountData;
use execution_core::transfer::phoenix::{
use dusk_core::stake::StakeData;
use dusk_core::transfer::moonlight::AccountData;
use dusk_core::transfer::phoenix::{
Note, NoteOpening, PublicKey as PhoenixPublicKey,
SecretKey as PhoenixSecretKey, ViewKey as PhoenixViewKey,
};
use execution_core::BlsScalar;
use dusk_core::BlsScalar;
use zeroize::Zeroize;

pub use wallet_core::keys::{
Expand Down

0 comments on commit 1b466b1

Please sign in to comment.