Skip to content

Commit

Permalink
chore: Fix rebase
Browse files Browse the repository at this point in the history
  • Loading branch information
PhilippGackstatter committed Feb 6, 2025
1 parent 0f675c9 commit 724a1ef
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/merkle/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ pub use path::{MerklePath, RootPath, ValuePath};

mod smt;
pub use smt::{
InnerNode, LeafIndex, MutationSet, NodeMutation, SimpleSmt, Smt, SmtLeaf, SmtLeafError,
SmtProof, SmtProofError, SMT_DEPTH, SMT_MAX_DEPTH, SMT_MIN_DEPTH,
InnerNode, LeafIndex, MutationSet, NodeMutation, PartialSmt, SimpleSmt, Smt, SmtLeaf,
SmtLeafError, SmtProof, SmtProofError, SMT_DEPTH, SMT_MAX_DEPTH, SMT_MIN_DEPTH,
};

mod mmr;
Expand Down
2 changes: 1 addition & 1 deletion src/merkle/smt/partial.rs
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,7 @@ mod tests {
kv_pairs.push((key, value));
}

let mut full = Smt::with_entries_par(kv_pairs).unwrap();
let mut full = Smt::with_entries(kv_pairs).unwrap();

// Constructing a partial SMT from proofs succeeds.
// ----------------------------------------------------------------------------------------
Expand Down

0 comments on commit 724a1ef

Please sign in to comment.