pub struct NodeMerkleProof<T, M> { /* private fields */ }
Implementations§
source§impl<T: Clone + PartialEq, M: Merge<Item = T>> NodeMerkleProof<T, M>
impl<T: Clone + PartialEq, M: Merge<Item = T>> NodeMerkleProof<T, M>
pub fn new(mmr_size: u64, proof: Vec<(u64, T)>) -> Self
pub fn mmr_size(&self) -> u64
pub fn proof_items(&self) -> &[(u64, T)]
pub fn calculate_root(&self, leaves: Vec<(u64, T)>) -> Result<T>
sourcepub fn calculate_root_with_new_leaf(
&self,
nodes: Vec<(u64, T)>,
new_pos: u64,
new_elem: T,
new_mmr_size: u64
) -> Result<T>
pub fn calculate_root_with_new_leaf( &self, nodes: Vec<(u64, T)>, new_pos: u64, new_elem: T, new_mmr_size: u64 ) -> Result<T>
from merkle proof of leaf n to calculate merkle root of n + 1 leaves. by observe the MMR construction graph we know it is possible. https://github.com/jjyr/merkle-mountain-range#construct
pub fn verify(&self, root: T, nodes: Vec<(u64, T)>) -> Result<bool>
sourcepub fn verify_incremental(
&self,
root: T,
prev_root: T,
incremental: Vec<T>
) -> Result<bool>
pub fn verify_incremental( &self, root: T, prev_root: T, incremental: Vec<T> ) -> Result<bool>
Verifies a old root and all incremental leaves.
If this method returns true
, it means the following assertion are true:
- The old root could be generated in the history of the current MMR.
- All incremental leaves are on the current MMR.
- The MMR, which could generate the old root, appends all incremental leaves, becomes the current MMR.
Trait Implementations§
Auto Trait Implementations§
impl<T, M> Freeze for NodeMerkleProof<T, M>
impl<T, M> RefUnwindSafe for NodeMerkleProof<T, M>where
M: RefUnwindSafe,
T: RefUnwindSafe,
impl<T, M> Send for NodeMerkleProof<T, M>
impl<T, M> Sync for NodeMerkleProof<T, M>
impl<T, M> Unpin for NodeMerkleProof<T, M>
impl<T, M> UnwindSafe for NodeMerkleProof<T, M>where
M: UnwindSafe,
T: UnwindSafe,
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more