change arg name

This commit is contained in:
poma 2019-11-02 13:09:02 +03:00
parent 8e8243823a
commit 35500ac5bb
1 changed files with 2 additions and 2 deletions

View File

@ -105,8 +105,8 @@ contract Mixer is MerkleTreeWithHistory {
function _processWithdraw(address payable _receiver, address payable _relayer, uint256 _fee, uint256 _refund) internal;
/** @dev whether a note is already spent */
function isSpent(uint256 nullifier) public view returns(bool) {
return nullifierHashes[nullifier];
function isSpent(uint256 nullifierHash) public view returns(bool) {
return nullifierHashes[nullifierHash];
}
/**