lssa/common/src/utxo_commitment.rs

11 lines
254 B
Rust
Raw Normal View History

use serde::{Deserialize, Serialize};
2025-09-03 10:29:51 +03:00
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,
}