From c3ca1c480401334d0a0552093c45ba17ab3eb4b9 Mon Sep 17 00:00:00 2001 From: Sergio Chouhy Date: Fri, 17 Oct 2025 15:39:17 -0300 Subject: [PATCH] remove unused common/src/utxo_commitment.rs file --- common/src/lib.rs | 1 - common/src/utxo_commitment.rs | 10 ---------- 2 files changed, 11 deletions(-) delete mode 100644 common/src/utxo_commitment.rs 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, -}