mirror of
https://github.com/sigp/lighthouse.git
synced 2026-03-03 00:31:50 +00:00
10 lines
178 B
Rust
10 lines
178 B
Rust
use tree_hash_derive::CachedTreeHashSubTree;
|
|
|
|
#[derive(Clone, Debug, CachedTreeHashSubTree)]
|
|
pub struct Inner {
|
|
pub a: u64,
|
|
pub b: u64,
|
|
pub c: u64,
|
|
pub d: u64,
|
|
}
|