diff --git a/@tornado/fixed-merkle-tree/src/mimc.js b/@tornado/fixed-merkle-tree/src/mimc.js index 46f237d..c5d75f4 100644 --- a/@tornado/fixed-merkle-tree/src/mimc.js +++ b/@tornado/fixed-merkle-tree/src/mimc.js @@ -1,3 +1,3 @@ -const { mimcsponge } = require('circomlib') +const { mimcsponge } = require('@tornado/circomlib') const { bigInt } = require('@tornado/snarkjs') module.exports = (left, right) => mimcsponge.multiHash([bigInt(left), bigInt(right)]).toString()