Prefix all parameters with underscore (#1133)

This commit is contained in:
Leo Arias
2018-07-31 10:06:53 -06:00
committed by Nicolás Venturo
parent 1200969eb6
commit 2765350248
33 changed files with 192 additions and 192 deletions

View File

@ -25,17 +25,17 @@ contract RBACMintableToken is MintableToken, RBAC {
/**
* @dev add a minter role to an address
* @param minter address
* @param _minter address
*/
function addMinter(address minter) onlyOwner public {
addRole(minter, ROLE_MINTER);
function addMinter(address _minter) onlyOwner public {
addRole(_minter, ROLE_MINTER);
}
/**
* @dev remove a minter role from an address
* @param minter address
* @param _minter address
*/
function removeMinter(address minter) onlyOwner public {
removeRole(minter, ROLE_MINTER);
function removeMinter(address _minter) onlyOwner public {
removeRole(_minter, ROLE_MINTER);
}
}