Commit eb5b6252 by Ariel Barmat

Add missing parentheses in modifier

parent de0e6ba2
...@@ -26,7 +26,7 @@ contract Pausable is Ownable { ...@@ -26,7 +26,7 @@ contract Pausable is Ownable {
/** /**
* @dev modifier to allow actions only when the contract IS NOT paused * @dev modifier to allow actions only when the contract IS NOT paused
*/ */
modifier whenPaused { modifier whenPaused() {
require(paused); require(paused);
_; _;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment