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