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