diff --git a/common/src/lib.rs b/common/src/lib.rs index cfed539..c73b7a9 100644 --- a/common/src/lib.rs +++ b/common/src/lib.rs @@ -6,7 +6,6 @@ pub mod block; pub mod rpc_primitives; pub mod sequencer_client; pub mod transaction; -pub mod utxo_commitment; //Module for tests utility functions pub mod test_utils; diff --git a/common/src/utxo_commitment.rs b/common/src/utxo_commitment.rs deleted file mode 100644 index 1b42421..0000000 --- a/common/src/utxo_commitment.rs +++ /dev/null @@ -1,10 +0,0 @@ -use serde::{Deserialize, Serialize}; - -use crate::TreeHashType; - -//ToDo: Update UTXO Commitment model, when it is clear -#[derive(Debug, Serialize, Deserialize, Clone)] -///General commitment object -pub struct UTXOCommitment { - pub hash: TreeHashType, -}