Merge pull request #340 from abarmat/style-1

Add missing parentheses in modifier
This commit is contained in:
Francisco Giordano
2017-08-07 17:25:01 -03:00
committed by GitHub

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