Advertisement
Guest User

Untitled

a guest
Jul 25th, 2017
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. pragma solidity 0.4.11;
  2.  
  3. contract Foo {
  4.  
  5. event Debug(string msg);
  6. modifier checkThis(string action) {
  7. Debug(action);
  8. _;
  9. }
  10.  
  11. function checkOnce() checkThis('once') {
  12.  
  13. }
  14.  
  15. function checkTwice() checkThis('first') checkThis('second') {
  16.  
  17. }
  18.  
  19. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement