mirror of
https://github.com/logos-blockchain/logos-execution-zone.git
synced 2026-03-24 03:03:09 +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,
|
|
}
|