mirror of
https://github.com/status-im/contracts.git
synced 2025-02-23 20:18:42 +00:00
smallfix
This commit is contained in:
parent
a3ad7c18f9
commit
e5cadba3b8
@ -97,11 +97,11 @@ contract MessageTribute is Controlled {
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* @notice controller can stop the contract
|
* @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 {
|
function setStopped(bool _stop) external onlyController {
|
||||||
stopped = stop;
|
stopped = _stop;
|
||||||
emit Stopped(stop);
|
emit Stopped(_stop);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
Loading…
x
Reference in New Issue
Block a user