fix rebase

This commit is contained in:
poma 2019-10-06 05:25:48 +03:00
parent 71f6fce20e
commit d38647aeaa
1 changed files with 1 additions and 1 deletions

View File

@ -46,7 +46,7 @@ contract MerkleTreeWithHistory {
uint256[] memory data = new uint256[](2);
data[0] = left;
data[1] = right;
hash = MiMC.poseidon(data);
hash = Hasher.poseidon(data);
}
function _insert(uint256 leaf) internal {