Add missing parentheses in modifier

This commit is contained in:
Ariel Barmat
2017-07-28 20:59:11 +02:00
parent de0e6ba222
commit eb5b6252bc

View File

@ -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);
_;
}