mirror of
https://github.com/logos-blockchain/lssa.git
synced 2026-01-02 21:33:09 +00:00
11 lines
274 B
Rust
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,
|
|
}
|