mirror of
https://github.com/tornadocash/tornado-core.git
synced 2024-11-22 09:47:13 +01:00
13 lines
326 B
Solidity
13 lines
326 B
Solidity
// SPDX-License-Identifier: MIT
|
|
pragma solidity ^0.7.0;
|
|
|
|
import "../MerkleTreeWithHistory.sol";
|
|
|
|
contract MerkleTreeWithHistoryMock is MerkleTreeWithHistory {
|
|
constructor(uint32 _treeLevels, IHasher _hasher) MerkleTreeWithHistory(_treeLevels, _hasher) {}
|
|
|
|
function insert(bytes32 _leaf) public {
|
|
_insert(_leaf);
|
|
}
|
|
}
|