change arg name

This commit is contained in:
poma 2019-11-01 04:28:46 +03:00
parent 35500ac5bb
commit 48cc57fad7
1 changed files with 2 additions and 2 deletions

View File

@ -135,7 +135,7 @@ contract Mixer is MerkleTreeWithHistory {
}
/** @dev operator can change his address */
function changeOperator(address _newAccount) external onlyOperator {
operator = _newAccount;
function changeOperator(address _newOperator) external onlyOperator {
operator = _newOperator;
}
}