mirror of
https://github.com/tornadocash/tornado-core.git
synced 2025-08-06 05:44:16 -04:00
refactor merkle tree naming
This commit is contained in:
parent
e413ccdc29
commit
2ded1f8adb
3 changed files with 53 additions and 66 deletions
|
@ -4,9 +4,9 @@ import '../MerkleTreeWithHistory.sol';
|
|||
|
||||
contract MerkleTreeWithHistoryMock is MerkleTreeWithHistory {
|
||||
|
||||
constructor (uint8 tree_levels) MerkleTreeWithHistory(tree_levels) public {}
|
||||
constructor (uint8 _treeLevels) MerkleTreeWithHistory(_treeLevels) public {}
|
||||
|
||||
function insert(uint256 leaf) public {
|
||||
_insert(leaf);
|
||||
function insert(uint256 _leaf) public {
|
||||
_insert(_leaf);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue