Skip to content

Commit

Permalink
fix: use hashtree in setHasher.mjs for test
Browse files Browse the repository at this point in the history
  • Loading branch information
twoeths committed Jun 29, 2024
1 parent 56b51be commit 83db85f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion setHasher.mjs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// Set the hasher to hashtree
// Used to run benchmarks with with visibility into hashtree performance, useful for Lodestar
import {setHasher} from "@chainsafe/persistent-merkle-tree/lib/hasher/index.js";
import {hasher} from "@chainsafe/persistent-merkle-tree/lib/hasher/as-sha256.js";
import {hasher} from "@chainsafe/persistent-merkle-tree/lib/hasher/hashtree.js";
setHasher(hasher);

0 comments on commit 83db85f

Please sign in to comment.