Add emit keyword to compilation tests.

This commit is contained in:
chriseth
2018-06-27 10:37:46 +02:00
parent b9d035264d
commit 01fd5a8d51
43 changed files with 120 additions and 120 deletions
@@ -36,7 +36,7 @@ contract Pausable is Ownable {
*/
function pause() onlyOwner whenNotPaused returns (bool) {
paused = true;
Pause();
emit Pause();
return true;
}
@@ -45,7 +45,7 @@ contract Pausable is Ownable {
*/
function unpause() onlyOwner whenPaused returns (bool) {
paused = false;
Unpause();
emit Unpause();
return true;
}
}