Add missing parentheses in modifier
This commit is contained in:
@ -26,7 +26,7 @@ contract Pausable is Ownable {
|
||||
/**
|
||||
* @dev modifier to allow actions only when the contract IS NOT paused
|
||||
*/
|
||||
modifier whenPaused {
|
||||
modifier whenPaused() {
|
||||
require(paused);
|
||||
_;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user