lssa/common/src/utxo_commitment.rs
Oleksandr Pravdyvyi 8e4956891c fix: refactor 1
2025-04-16 16:17:53 +03:00

11 lines
274 B
Rust

use serde::{Deserialize, Serialize};
use crate::merkle_tree_public::TreeHashType;
//ToDo: Update UTXO Commitment model, when it is clear
#[derive(Debug, Serialize, Deserialize, Clone)]
///General commitment object
pub struct UTXOCommitment {
pub hash: TreeHashType,
}