mirror of
https://github.com/logos-blockchain/lssa.git
synced 2026-01-09 08:43:12 +00:00
11 lines
280 B
Rust
11 lines
280 B
Rust
|
|
use serde::{Deserialize, Serialize};
|
||
|
|
|
||
|
|
use crate::merkle_tree_public::TreeHashType;
|
||
|
|
|
||
|
|
//ToDo: Update Nullifier model, when it is clear
|
||
|
|
#[derive(Debug, Serialize, Deserialize, Clone, Default)]
|
||
|
|
///General bullifier object
|
||
|
|
pub struct UTXONullifier {
|
||
|
|
pub utxo_hash: TreeHashType,
|
||
|
|
}
|