mirror of
https://github.com/logos-blockchain/lssa.git
synced 2026-01-02 21:33:09 +00:00
11 lines
259 B
Rust
11 lines
259 B
Rust
use serde::{Deserialize, Serialize};
|
|
|
|
use crate::merkle_tree_public::TreeHashType;
|
|
|
|
//ToDo: Update Tx model, when it is clear
|
|
#[derive(Debug, Serialize, Deserialize, Clone)]
|
|
///General transaction object
|
|
pub struct Transaction {
|
|
pub hash: TreeHashType,
|
|
}
|