proof 0.0.0

Library for interacting with SSZ merkle tree proofs.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
use std::marker::PhantomData;
use typenum::Unsigned;

#[derive(Debug, Default)]
pub struct VariableList<T, N: Unsigned> {
    _phantom_type: PhantomData<T>,
    _phantom_count: PhantomData<N>,
}

#[derive(Debug, Default)]
pub struct FixedVector<T, N: Unsigned> {
    _phantom_type: PhantomData<T>,
    _phantom_count: PhantomData<N>,
}