remove unused common/src/utxo_commitment.rs file

This commit is contained in:
Sergio Chouhy 2025-10-17 15:39:17 -03:00
parent f669f10d9e
commit c3ca1c4804
2 changed files with 0 additions and 11 deletions

View File

@ -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;

View File

@ -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,
}