Commit 52490b92 by Francisco Giordano Committed by GitHub

Merge pull request #340 from abarmat/style-1

Add missing parentheses in modifier
parents 287b873a eb5b6252
......@@ -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);
_;
}
......
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