diff --git a/common/append_merkle/src/proof.rs b/common/append_merkle/src/proof.rs index f7386c6..db7ad04 100644 --- a/common/append_merkle/src/proof.rs +++ b/common/append_merkle/src/proof.rs @@ -13,7 +13,7 @@ impl Proof { /// Creates new MT inclusion proof pub fn new(hash: Vec, path: Vec) -> Result> { if hash.len() != path.len() + 2 { - bail!("hash and path length mismatch"); + bail!("Proof::new: expected hash length = path.len() + 2, but got {} and {}", hash.len(), path.len()); } Ok(Proof { lemma: hash, path }) }