mirror of
https://github.com/tornadocash/tornado-core.git
synced 2024-11-01 07:45:20 +01:00
13 lines
278 B
Solidity
13 lines
278 B
Solidity
pragma solidity ^0.5.8;
|
|
|
|
import '../MerkleTreeWithHistory.sol';
|
|
|
|
contract MerkleTreeWithHistoryMock is MerkleTreeWithHistory {
|
|
|
|
constructor (uint8 _treeLevels) MerkleTreeWithHistory(_treeLevels) public {}
|
|
|
|
function insert(uint256 _leaf) public {
|
|
_insert(_leaf);
|
|
}
|
|
}
|