Type Alias pallet_bridge_beefy::BridgedMmrProof
source · pub type BridgedMmrProof<T, I> = MmrProofOf<BridgedChain<T, I>>;
Expand description
BEEFY MMR proof type used by the pallet
Aliased Type§
struct BridgedMmrProof<T, I> {
pub leaf_indices: Vec<u64>,
pub leaf_count: u64,
pub items: Vec<<<T as Config<I>>::BridgedChain as ChainWithBeefy>::MmrHash>,
}
Fields§
§leaf_indices: Vec<u64>
The indices of the leaves the proof is for.
leaf_count: u64
Number of leaves in MMR, when the proof was generated.
items: Vec<<<T as Config<I>>::BridgedChain as ChainWithBeefy>::MmrHash>
Proof elements (hashes of siblings of inner nodes on the path to the leafs).