This commit is contained in:
Ricardo Guilherme Schmidt 2019-03-21 00:56:42 -03:00
parent a3ad7c18f9
commit e5cadba3b8
No known key found for this signature in database
GPG Key ID: BFB3F5C8ED618A94

View File

@ -97,11 +97,11 @@ contract MessageTribute is Controlled {
/**
* @notice controller can stop the contract
* @param _defaultValue fee for unset or reseted users.
* @param _stop true disables alterting the contract
*/
function setStopped(bool stop) external onlyController {
stopped = stop;
emit Stopped(stop);
function setStopped(bool _stop) external onlyController {
stopped = _stop;
emit Stopped(_stop);
}
/**