function_modifier.sol 224 B

12345678910111213
  1. contract example {
  2. address owner;
  3. modifier only_owner() {
  4. require(msg.sender == owner);
  5. _;
  6. // insert post conditions here
  7. }
  8. function foo() public only_owner {
  9. // ...
  10. }
  11. }