mirror of
https://github.com/logos-blockchain/lssa.git
synced 2026-01-05 14:53:06 +00:00
9 lines
233 B
Rust
9 lines
233 B
Rust
|
|
use serde::{Deserialize, Serialize};
|
||
|
|
|
||
|
|
use crate::merkle_tree_public::CommitmentHashType;
|
||
|
|
|
||
|
|
#[derive(Debug, Serialize, Deserialize, Clone, Default, PartialEq, Eq)]
|
||
|
|
pub struct Commitment {
|
||
|
|
pub commitment_hash: CommitmentHashType,
|
||
|
|
}
|